(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
i386/
pr103541.c
       1  /* PR rtl-optimization/103541 */
       2  /* { dg-do compile  { target { ! ia32 } } } */
       3  /* { dg-options "-O2" } */
       4  
       5  float a;
       6  __attribute__((const)) float foo (float);
       7  
       8  float
       9  test()
      10  {
      11          return a + foo(a) + a;
      12  }
      13  
      14  /* { dg-final { scan-assembler-not "\\\(%rsp\\\)" } } */