OSDN Git Service

2012-02-28 Richard Guenther <rguenther@suse.de>
[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 }