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 c/11056] New: ice in ix86_expand_binop_builtin with -mmmx


PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

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

           Summary: ice in ix86_expand_binop_builtin with -mmmx
           Product: gcc
           Version: 3.3
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: c
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: ronaldgcc@yahoo.com
                CC: gcc-bugs@gcc.gnu.org

The following code gives an ice in ix86_expand_binop_builtin
when compiled with -mmmx on x86:

--minimal.c------------------------------------------------------------
typedef int di __attribute__ ((mode(DI)));

di a;

void f()
{
  a = __builtin_ia32_pxor(a, (di)(0ULL));
}
-----------------------------------------------------------------------

[ronald@localhost]$ gcc -v
Reading specs from /usr/lib/gcc-lib/i686-pc-linux-gnu/3.3/specs
Configured with: ../gcc-3.3/configure --prefix=/usr --enable-threads --enable-shared
Thread model: posix
gcc version 3.3
[ronald@localhost]$ gcc minimal.c -mmmx
minimal.c: In function `f':
minimal.c:9: internal compiler error: in ix86_expand_binop_builtin, at
config/i386/i386.c:13029
Please submit a full bug report,
with preprocessed source if appropriate.
See <URL:http://gcc.gnu.org/bugs.html> for instructions.



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


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