OSDN Git Service

2009-05-19 Richard Guenther <rguenther@suse.de>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / compile / pr37483.c
1 /* PR target/37483 */
2
3 unsigned long long
4 foo (unsigned count, int i)
5 {
6   unsigned long long value;
7   if (i == 0)
8     value = (value & 0xFFFFFFFF) >> count;
9   return value;
10 }