* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 20110902.c
blob1556e4a367354cdd72ca5e611870fd2b92fe54e2
1 static inline __attribute__((always_inline)) int f (unsigned int n, unsigned int size)
3 return (__builtin_constant_p (size != 0 && n > ~0 / size)
4 ? !!(size != 0 && n > ~0 / size)
5 : ({ static unsigned int count[2] = { 0, 0 };
6 int r = !!(size != 0 && n > ~0 / size);
7 count[r]++;
8 r; }));
11 int g (unsigned int size)
13 return f (size / 4096, 4);