URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.target/] [i386/] [20001127-1.c] - Rev 149
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile { target i?86-*-* x86_64-*-* } } */ /* { dg-options "-O2" } */ extern inline float bar (float x) { register long double value; asm volatile ("frndint" : "=t" (value) : "0" (x)); return value; } float a; float foo (float b) { return a + bar (b); }
Go to most recent revision | Compare with Previous | Blame | View Log