c++/10796: gianormous enum values
kevin@proximity.com.au
kevin@proximity.com.au
Thu May 15 07:36:00 GMT 2003
>Number: 10796
>Category: c++
>Synopsis: gianormous enum values
>Confidential: no
>Severity: serious
>Priority: medium
>Responsible: unassigned
>State: open
>Class: ice-on-illegal-code
>Submitter-Id: net
>Arrival-Date: Thu May 15 07:26:00 UTC 2003
>Closed-Date:
>Last-Modified:
>Originator: Kevin Cousins
>Release: gcc version 3.2.2
>Organization:
>Environment:
Linux 2.4.18-17.7.x i686
>Description:
In C++, according to Stroustrup, enums can grow to sizeof(int). On this machine, sizeof(int)==4, but I when exploring the maximum size enum value g++ would honour, I got an ICE.
The following code (put it in a file called enum.C) COMPILES with given command line and runs
$ cat enum.C <<EOF
enum test {
acceptable = 0x7fffffffffffffff,
unacceptable = 0xffffffffffffffff
};
int main() {
test
t = acceptable,
u = unacceptable;
return 0;
}
EOF
$ g++ -save-temps enum.C -o enum
$ ./enum
>How-To-Repeat:
Replace line in enum.C that says:
acceptable = 0x7fffffffffffffff,
with the following line:
acceptable = -1,
and attempt to compile with command line as given.
>Fix:
Don't use ridiculous enum values? Is that sufficient, or should the compiler be able to pick this up?
>Release-Note:
>Audit-Trail:
>Unformatted:
More information about the Gcc-bugs
mailing list