[Bug c++/20008] [4.0 Regression] internal compiler error: in expand_case, at stmt.c:2397

2005-02-18 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-02-18 12:21 --- Subject: Bug 20008 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2005-02-18 12:20:50 Modified files: gcc: ChangeLog stmt.c

[Bug c++/20008] [4.0 Regression] internal compiler error: in expand_case, at stmt.c:2397

2005-02-18 Thread jakub at gcc dot gnu dot org
--- Additional Comments From jakub at gcc dot gnu dot org 2005-02-18 12:26 --- Fixed. -- What|Removed |Added Status|ASSIGNED|RESOLVED

[Bug c++/20008] [4.0 Regression] internal compiler error: in expand_case, at stmt.c:2397

2005-02-17 Thread caolanm at redhat dot com
--- Additional Comments From caolanm at redhat dot com 2005-02-17 10:00 --- FWIW: openoffice.org 1.9.77 side patch to workaround at http://people.redhat.com/caolanm/gcc4/xmlsecurity.gcc20008.gcc4.patch -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=20008

[Bug c++/20008] [4.0 Regression] internal compiler error: in expand_case, at stmt.c:2397

2005-02-17 Thread aoliva at gcc dot gnu dot org
-- What|Removed |Added AssignedTo|unassigned at gcc dot gnu |aoliva at gcc dot gnu dot |dot org |org Status|NEW

[Bug c++/20008] [4.0 Regression] internal compiler error: in expand_case, at stmt.c:2397

2005-02-17 Thread aoliva at redhat dot com
--- Additional Comments From aoliva at gcc dot gnu dot org 2005-02-17 16:17 --- Subject: [PR c++/20008, middle-end] handle switch with all cases out-of-range Sure enough, the testcase relied on undefined behavior, but that's no reason for us to ICE at compile time. I suppose it might

[Bug c++/20008] [4.0 Regression] internal compiler error: in expand_case, at stmt.c:2397

2005-02-16 Thread pinskia at gcc dot gnu dot org
-- What|Removed |Added Keywords||ice-on-valid-code Summary|internal compiler error: in |[4.0 Regression] internal

[Bug c++/20008] [4.0 Regression] internal compiler error: in expand_case, at stmt.c:2397

2005-02-16 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-02-16 19:16 --- Reduced testcase: typedef enum _SECStatus { SECWouldBlock = -2, SECFailure = -1, SECSuccess = 0 } SECStatus; typedef enum { SEC_ERROR_BAD_SIGNATURE = (-0x2000) + 10 } SECErrorCodes; void g(void);