1  /* PR target/98079 */
       2  /* { dg-do compile { target ia32 } } */
       3  /* { dg-options "-O2 -march=pentium3" } */
       4  
       5  typedef __UINT8_TYPE__ uint8_t;
       6  
       7  uint8_t foo (uint8_t x)
       8  {
       9    if (x & 0x80)
      10      x = -x;
      11  
      12    return x;
      13  }