[Bug middle-end/14203] [3.4/3.5 regression] ICE on warning about uninitialized variable

2004-02-29 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2004-02-29 14:07 --- Subject: Bug 14203 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2004-02-29 14:07:44 Modified files: gcc: ChangeLog function.c gcc/tes

[Bug middle-end/14203] [3.4/3.5 regression] ICE on warning about uninitialized variable

2004-02-27 Thread mmitchel at gcc dot gnu dot org
-- What|Removed |Added AssignedTo|unassigned at gcc dot gnu |mark at codesourcery dot com |dot org | Status|NEW

[Bug middle-end/14203] [3.4/3.5 regression] ICE on warning about uninitialized variable

2004-02-18 Thread reichelt at gcc dot gnu dot org
--- Additional Comments From reichelt at gcc dot gnu dot org 2004-02-19 02:32 --- An even shorter version: = void foo() { if (false) if (int i=0) int j=0; } = -- What|Re

[Bug middle-end/14203] [3.4/3.5 regression] ICE on warning about uninitialized variable

2004-02-18 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2004-02-19 00:55 --- The problem is that the variable was not emitted into RTL so the variable does have not a DECL_RTL and calling make_decl_rtl on the decl will cause an ICE as the variable is an automatic variable. Note t