(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
i386/
ifcvt-onecmpl-abs-1.c
       1  /* { dg-do compile } */
       2  /* { dg-options "-O2" } */
       3  
       4  /* Check code generation for one's complement version of abs */
       5  
       6  int onecmplabs(int x)
       7  {
       8    if (x < 0)
       9      x = ~x;
      10    return x;
      11  }
      12  
      13  /* { dg-final { scan-assembler "\txor" } } */