* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / pr45059.c
blob3f13cdbf8c79809fa308dd1580eb5baf14f2fe0a
1 /* PR tree-optimization/45059 */
3 typedef unsigned int T;
4 extern void foo (signed char *, int);
6 static signed char a;
7 static T b[1] = { -1 };
8 static unsigned char c;
10 static inline short int
11 bar (short v)
13 c |= a < b[0];
14 return 0;
17 int
18 main ()
20 signed char *e = &a;
21 foo (e, bar (bar (c)));
22 return 0;