blob: 410f780de8b8f312f04a506642b38f02383ad37e [file] [log] [blame]
/* { 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;
}