install.texi (gcn): Suggest newer commit for Newlib
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 20120817-1.c
blobd47e6e76384cb19a3ca55ba3818d07b25d572a95
1 void abort (void);
2 void exit (int);
4 typedef unsigned long long u64;
5 unsigned long foo = 0;
6 u64 f() __attribute__((noinline));
8 u64 f() {
9 return ((u64)40) + ((u64) 24) * (int)(foo - 1);
12 int main ()
14 if (f () != 16)
15 abort ();
16 exit (0);