2008-11-15 Richard Guenther <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20050106-1.c
blobe49732de40e77db72a44a9c1ff7a27cc69370d3f
1 /* PR tree-optimization/19283 */
3 void abort (void);
5 static inline unsigned short
6 foo (unsigned int *p)
8 return *p;
9 };
11 unsigned int u;
13 int
14 main ()
16 if ((foo (&u) & 0x8000) != 0)
17 abort ();
18 return 0;