aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/pr37483.c
blob: b09489250954f15f5bfc568442b0937dfc2c5474 (plain)
1
2
3
4
5
6
7
8
9
10
/* PR target/37483 */

unsigned long long
foo (unsigned count, int i)
{
  unsigned long long value;
  if (i == 0)
    value = (value & 0xFFFFFFFF) >> count;
  return value;
}