This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug middle-end/49731] New: internal compiler error: verify_gimple failed


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49731

           Summary: internal compiler error: verify_gimple failed
           Product: gcc
           Version: 4.7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: middle-end
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: hjl.tools@gmail.com


[hjl@gnu-6 tests]$ cat foo.c
void g_hash_table_insert (void *, void*);
void int64_hash_test ()
{
     int i;
     long long values[4];
     for (i=0; i<4; i++)
       {
          values[i] = i + 42;
          g_hash_table_insert (&values[i], ((void *) (i + 42)));
       }
}
[hjl@gnu-6 tests]$ /usr/gcc-4.7.0-x32/bin/x86_64-unknown-linux-gnu-gcc   -O2 
-mx32  -S foo.c
foo.c: In function \u2018int64_hash_test\u2019:
foo.c:2:6: error: invalid types in nop conversion
void *
long long unsigned int
D.2730_20 = (void *) ivtmp.14_13;

foo.c:2:6: internal compiler error: verify_gimple failed
Please submit a full bug report,
with preprocessed source if appropriate.
See <http://gcc.gnu.org/bugs.html> for instructions.
[hjl@gnu-6 tests]$


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]