[Bug middle-end/18005] [4.0 Regression] ICE with simple loop with VLA

2004-11-11 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2004-11-12 01:08 --- Fixed. -- What|Removed |Added Status|NEW |RESOLVED

[Bug middle-end/18005] [4.0 Regression] ICE with simple loop with VLA

2004-11-11 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2004-11-12 00:13 --- Subject: Bug 18005 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2004-11-12 00:13:07 Modified files: gcc: ChangeLog tree-data-ref.c Log messa

[Bug middle-end/18005] [4.0 Regression] ICE with simple loop with VLA

2004-10-31 Thread phython at gcc dot gnu dot org
--- Additional Comments From phython at gcc dot gnu dot org 2004-10-31 17:37 --- *** Bug 18253 has been marked as a duplicate of this bug. *** -- What|Removed |Added

[Bug middle-end/18005] [4.0 Regression] ICE with simple loop with VLA

2004-10-19 Thread sebastian dot pop at cri dot ensmp dot fr
--- Additional Comments From sebastian dot pop at cri dot ensmp dot fr 2004-10-19 10:03 --- Subject: Re: [4.0 Regression] ICE with simple loop with VLA Patch is here: http://gcc.gnu.org/ml/gcc-patches/2004-10/msg01592.html -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=18005

[Bug middle-end/18005] [4.0 Regression] ICE with simple loop with VLA

2004-10-18 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2004-10-19 04:14 --- *** Bug 18052 has been marked as a duplicate of this bug. *** -- What|Removed |Added

[Bug middle-end/18005] [4.0 Regression] ICE with simple loop with VLA

2004-10-18 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2004-10-18 22:55 --- It really has nothing to do with that patch we are losing the TYPE_SIZE of the VLA, why? -- What|Removed |Added -

[Bug middle-end/18005] [4.0 Regression] ICE with simple loop

2004-10-16 Thread reichelt at gcc dot gnu dot org
--- Additional Comments From reichelt at gcc dot gnu dot org 2004-10-16 15:37 --- Here's an even shorter example. Just compile with "-O". const int n = 2; void foo() { int a[1][n], i; for (i=0; i<2; ++i) if (a[0][i]) return;