[Bug middle-end/37343] [4.4 Regression] ICE in expand_expr_real_1, at expr.c:7290

2008-09-06 Thread pinskia at gcc dot gnu dot org
--- Comment #8 from pinskia at gcc dot gnu dot org 2008-09-06 21:32 --- Fixed. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added Status|NEW

[Bug middle-end/37343] [4.4 Regression] ICE in expand_expr_real_1, at expr.c:7290

2008-09-06 Thread pinskia at gcc dot gnu dot org
--- Comment #9 from pinskia at gcc dot gnu dot org 2008-09-06 21:32 --- *** Bug 37332 has been marked as a duplicate of this bug. *** -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug middle-end/37343] [4.4 Regression] ICE in expand_expr_real_1, at expr.c:7290

2008-09-04 Thread hubicka at gcc dot gnu dot org
--- Comment #6 from hubicka at gcc dot gnu dot org 2008-09-04 10:47 --- Subject: Bug 37343 Author: hubicka Date: Thu Sep 4 10:45:57 2008 New Revision: 139983 URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=139983 Log: PR middle-end/37343 * tree-switch-conversion.c

[Bug middle-end/37343] [4.4 Regression] ICE in expand_expr_real_1, at expr.c:7290

2008-09-04 Thread rguenth at gcc dot gnu dot org
--- Comment #7 from rguenth at gcc dot gnu dot org 2008-09-04 11:57 --- *** Bug 37368 has been marked as a duplicate of this bug. *** -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=37343

[Bug middle-end/37343] [4.4 Regression] ICE in expand_expr_real_1, at expr.c:7290

2008-09-03 Thread rguenth at gcc dot gnu dot org
--- Comment #2 from rguenth at gcc dot gnu dot org 2008-09-03 08:52 --- We expand a PARM_DECL while cfun is NULL. #0 fancy_abort (file=0xf24e90 /space/rguenther/src/svn/trunk/gcc/expr.c, line=7290, function=0xf25ab0 expand_expr_real_1) at

[Bug middle-end/37343] [4.4 Regression] ICE in expand_expr_real_1, at expr.c:7290

2008-09-03 Thread rguenth at gcc dot gnu dot org
--- Comment #3 from rguenth at gcc dot gnu dot org 2008-09-03 09:17 --- typedef enum RW { rwBitmapGrey, rwBitmapGrey16 } RW; void FindDepth(RW); void ParseDumpBitmap(RW kind, int maxfiles) { static const RW normalTypes[] = { }; const RW *bitmapTypes; int i; switch

[Bug middle-end/37343] [4.4 Regression] ICE in expand_expr_real_1, at expr.c:7290

2008-09-03 Thread hubicka at ucw dot cz
--- Comment #4 from hubicka at ucw dot cz 2008-09-03 14:30 --- Subject: Re: [4.4 Regression] ICE in expand_expr_real_1, at expr.c:7290 Hi, this is switch conversion bug. It attempts to convert the switch and construct static array with function_parameter in initializer that naturally

[Bug middle-end/37343] [4.4 Regression] ICE in expand_expr_real_1, at expr.c:7290

2008-09-03 Thread pinskia at gcc dot gnu dot org
--- Comment #5 from pinskia at gcc dot gnu dot org 2008-09-04 02:30 --- Note most likely we should not be generating arrays with addresses in them as we can create extra runtime relocations, see PR 36881. -- pinskia at gcc dot gnu dot org changed: What|Removed