[Bug c++/22005] [4.1 Regression] ICE: SSA_NAME verification failure

2005-06-20 Thread kreckel at ginac dot de
--- Additional Comments From kreckel at ginac dot de 2005-06-20 22:16 --- Subject: Re: [4.1 Regression] ICE: SSA_NAME verification failure On Mon, 20 Jun 2005, Richard B. Kreckel wrote: > On 20 Jun 2005, Ralf dot Wildenhues at gmx dot de wrote: > > (BTW, even with its share of bugs, C

[Bug c++/22005] [4.1 Regression] ICE: SSA_NAME verification failure

2005-06-20 Thread kreckel at ginac dot de
--- Additional Comments From kreckel at ginac dot de 2005-06-20 19:13 --- Subject: Re: [4.1 Regression] ICE: SSA_NAME verification failure On 20 Jun 2005, Ralf dot Wildenhues at gmx dot de wrote: > (BTW, even with its share of bugs, CLN might be a candidate for g++ regression > testin

[Bug c++/22005] [4.1 Regression] ICE: SSA_NAME verification failure

2005-06-20 Thread Ralf dot Wildenhues at gmx dot de
--- Additional Comments From Ralf dot Wildenhues at gmx dot de 2005-06-20 09:38 --- Thanks a lot for fixing this so promptly. I can confirm that the code which triggered this compiles now and seems to be working fine again with CVS HEAD. (BTW, even with its share of bugs, CLN might be

[Bug c++/22005] [4.1 Regression] ICE: SSA_NAME verification failure

2005-06-12 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-06-12 13:52 --- Fixed. -- What|Removed |Added Status|NEW |RESOLVED

[Bug c++/22005] [4.1 Regression] ICE: SSA_NAME verification failure

2005-06-11 Thread cvs-commit at gcc dot gnu dot org
--- Additional Comments From cvs-commit at gcc dot gnu dot org 2005-06-12 03:19 --- Subject: Bug 22005 CVSROOT:/cvs/gcc Module name:gcc Changes by: [EMAIL PROTECTED] 2005-06-12 03:19:26 Modified files: gcc: ChangeLog tree-ssa-structalias.c Add

[Bug c++/22005] [4.1 Regression] ICE: SSA_NAME verification failure

2005-06-10 Thread dberlin at dberlin dot org
--- Additional Comments From dberlin at gcc dot gnu dot org 2005-06-10 22:13 --- Subject: Re: [4.1 Regression] ICE: SSA_NAME verification failure On Fri, 2005-06-10 at 22:10 +, kreckel at ginac dot de wrote: > --- Additional Comments From kreckel at ginac dot de 2005-0

[Bug c++/22005] [4.1 Regression] ICE: SSA_NAME verification failure

2005-06-10 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-06-10 22:12 --- (In reply to comment #7) > Though unrelated: What exactly is invalid here? You are jumping out of an asm which is invalid as there is no way for GCC to know that. Also the label in the function gives GCC no

[Bug c++/22005] [4.1 Regression] ICE: SSA_NAME verification failure

2005-06-10 Thread kreckel at ginac dot de
--- Additional Comments From kreckel at ginac dot de 2005-06-10 22:10 --- (In reply to comment #5) > Note this code really contains some invalid inline-asm: > __asm__("jmp " "" "cl_module__cl_prin_globals__ctorend"); > > __asm__ ("\n" "" "cl_module__" "cl_prin_globals" "__dtorend" ":");

[Bug c++/22005] [4.1 Regression] ICE: SSA_NAME verification failure

2005-06-10 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-06-10 20:22 --- Confirmed, reduced testcase: struct cl_string { union{ int i; }; cl_string (); }; struct cl_print_univpoly_flags { cl_string univpoly_varname; }; struct cl_print_flags: cl_print_univpoly_flags {int i;};

[Bug c++/22005] [4.1 Regression] ICE: SSA_NAME verification failure

2005-06-10 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-06-10 19:49 --- Note this code really contains some invalid inline-asm: __asm__("jmp " "" "cl_module__cl_prin_globals__ctorend"); __asm__ ("\n" "" "cl_module__" "cl_prin_globals" "__dtorend" ":"); But that is not causing

[Bug c++/22005] [4.1 Regression] ICE: SSA_NAME verification failure

2005-06-10 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-06-10 18:51 --- -fno-tree-salias works around the ICE. -- What|Removed |Added CC|