(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
i386/
pr101044.c
       1  /* PR target/101044 */
       2  /* { dg-do compile } */
       3  /* { dg-options "-O2 -msse2 -mno-sse3 -mtune=generic" } */
       4  /* { dg-final { scan-assembler-times "neg" 1 } } */
       5  
       6  int foo (int x)
       7  {
       8    return (x < 0) ? x : -x;
       9  }