aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/20020530-1.c
blob: a6794892ec77cc464913ee4346da628b97d6f086 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* PR optimization/6822 */

extern unsigned char foo1 (void);
extern unsigned short foo2 (void);

int bar1 (void)
{
  unsigned char q = foo1 ();
  return (q < 0x80) ? 64 : 0;
}

int bar2 (void)
{
  unsigned short h = foo2 ();
  return (h < 0x8000) ? 64 : 0;
}