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/15062] [tree-ssa]Invalid operand to binary operator


------- Additional Comments From bbooth at redhat dot com  2004-05-04 15:57 -------
I can reproduce this with the following at -O3:

double __nextafter(double x, double y)
{
 int ix;
 unsigned int lx;

 if((ix-0x7ff00000)!=0)
    return x+y;

 asm ("" : "=m"(x) : "m"(x));

}

-- 


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


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