This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug c/48305] [4.7 Regression] ice at -O0: verify_gimple failed
- From: "jakub at gcc dot gnu.org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: Mon, 28 Mar 2011 07:44:58 +0000
- Subject: [Bug c/48305] [4.7 Regression] ice at -O0: verify_gimple failed
- Auto-submitted: auto-generated
- References: <bug-48305-4@http.gcc.gnu.org/bugzilla/>
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48305
Jakub Jelinek <jakub at gcc dot gnu.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |ASSIGNED
Last reconfirmed| |2011.03.28 07:44:54
CC| |jakub at gcc dot gnu.org
AssignedTo|unassigned at gcc dot |jakub at gcc dot gnu.org
|gnu.org |
Target Milestone|--- |4.7.0
Summary|ice at -O0: verify_gimple |[4.7 Regression] ice at
|failed |-O0: verify_gimple failed
Ever Confirmed|0 |1
--- Comment #1 from Jakub Jelinek <jakub at gcc dot gnu.org> 2011-03-28 07:44:54 UTC ---
Shorter testcase:
int
foo (int x, char y)
{
return (x ^ 7U > y >= 0) == (1U ^ x);
}