[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

[Bug tree-optimization/38593] [4.4 regression] ICE: verify_gimple failed




------- 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

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


Reply to: