(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
powerpc/
ppc64-double-1.c
       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
       9  d2ll2d (double d)
      10  {
      11          return (double)(long long)d;
      12  }