OSDN Git Service

2007-03-19 Andrew Pinski <andrew_pinski@playstation.sony.com>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / torture / pr24912-1.c
1 void foo(void);
2 void
3 bar (unsigned char *p)
4 {
5   int j;
6   j = *(p) ;
7   j += ((signed char) (*p) ) << 8;
8   if (j)
9     foo();
10 }