blob: 199f3fe7a0168143fb9e4fb082d98ed3bd14f4ab [file] [log] [blame]
/* PR target/94913 */
/* { dg-do compile } */
/* { dg-options "-O2" } */
void f1 (void);
void f2 (void);
void fooc (unsigned char x, unsigned char y)
{
if ((unsigned char) ~x < y) f1 (); else f2 ();
}
void foos (unsigned short x, unsigned short y)
{
if ((unsigned short) ~x < y) f1 (); else f2 ();
}
void fooi (unsigned long x, unsigned long y)
{
if ((unsigned long) ~x < y) f1 (); else f2 ();
}
/* { dg-final { scan-assembler-not "cmp" } } */
/* On IA32, PIC adds one add per function to compute the PIC register, and
another add to adjust %esp in the epilogue needed to restore the PIC
register. */
/* { dg-final { scan-assembler-times "add" 3 { target { ! { ia32 && { ! nonpic } } } } } } */
/* { dg-final { scan-assembler-times "add" 9 { target { ia32 && { ! nonpic } } } } } */