URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.target/] [powerpc/] [rs6000-fpint.c] - Rev 697
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile { target powerpc*-*-* rs6000-*-* } } */ /* { dg-options "-mno-powerpc-gfxopt" } */ /* { dg-final { scan-assembler-not "stfiwx" } } */ /* A basic test of the old-style (not stfiwx) fp -> int conversion. */ int f(double a, double b) { int a1 = a; int b1 = b; return a1+b1; }
Go to most recent revision | Compare with Previous | Blame | View Log