Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / gcc.c-torture / execute / 20000314-2.c
blobc190d8f79b5e993378619cd7384d89a9d1dbcf72
1 typedef unsigned long long uint64;
2 const uint64 bigconst = 1ULL << 34;
4 int a = 1;
6 static
7 uint64 getmask(void)
9 if (a)
10 return bigconst;
11 else
12 return 0;
15 main()
17 uint64 f = getmask();
18 if (sizeof (long long) == 8
19 && f != bigconst) abort ();
20 exit (0);