[Bug tree-optimization/26476] [4.2 Regression] ice for valid code with -O2

2006-03-01 Thread pinskia at gcc dot gnu dot org
--- Comment #5 from pinskia at gcc dot gnu dot org 2006-03-01 18:29 --- Confirmed, fixed with the patch for PR 26443. *** This bug has been marked as a duplicate of 26443 *** -- pinskia at gcc dot gnu dot org changed: What|Removed |Added -

[Bug tree-optimization/26476] [4.2 Regression] ice for valid code with -O2

2006-02-26 Thread pinskia at gcc dot gnu dot org
--- Comment #4 from pinskia at gcc dot gnu dot org 2006-02-26 23:09 --- I think this will be solved with the patch which solves PR 26443 as the ICE is also in VRP2. -- pinskia at gcc dot gnu dot org changed: What|Removed |Added

[Bug tree-optimization/26476] [4.2 Regression] ice for valid code with -O2

2006-02-26 Thread pinskia at gcc dot gnu dot org
--- Comment #3 from pinskia at gcc dot gnu dot org 2006-02-26 23:06 --- Confirmed, reduced testcase: typedef struct logfunctions { char *prefix; int onoff[5]; }a; extern int default_onoff[5]; void f(a *t) { int i; for (i=0; i<5; i++) t->onoff[i] = default_onoff[i]; } ---