This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug tree-optimization/38593] [4.4 regression] ICE: verify_gimple failed
- From: "reichelt at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 5 Jan 2009 21:48:19 -0000
- Subject: [Bug tree-optimization/38593] [4.4 regression] ICE: verify_gimple failed
- References: <bug-38593-11764@http.gcc.gnu.org/bugzilla/>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Comment #9 from reichelt at gcc dot gnu dot org 2009-01-05 21:48 -------
That's really a duplicate of PR38725: The code contains many lines of the form
goto *dispatch_table[opcode];
where dispatch_table[opcode] is of the type uintptr_t which is a typedef
to unsigned int. Writing
goto *(void*)dispatch_table[opcode];
instead makes the ICE disappear.
*** This bug has been marked as a duplicate of 38725 ***
--
reichelt at gcc dot gnu dot org changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |DUPLICATE
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=38593