aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/graphite/run-id-pr46758.c
blob: 81411f5708e21df68e50d5d81ccf6e5683c585ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
int
movegt (int y, long long a)
{
  int i;
  int ret = 0;
  for (i = 0; i < y; i++)
    if (a == -1LL << 33)
      ret = -1;
  return ret;
}

int
main ()
{
  if (movegt (1, -1LL << 33) != -1)
    __builtin_abort ();
  return 0;
}