1 // { dg-do compile }
2 /* { dg-skip-if "" { powerpc*-*-aix* } } */
3 // { dg-options "-O2 -mpowerpc64" }
4 // { dg-final { scan-assembler-not "stfd"  }  }
5 
6 // The register allocator should have allocated the temporary long long value in a floating point register.
7 
8 double
d2ll2d(double d)9 d2ll2d (double d)
10 {
11         return (double)(long long)d;
12 }
13