Daily bump.
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 980505-1.c
blob905241164dd38888500b77474ecaaa1c684f1cea
1 static int f(int) __attribute__((const));
2 int main()
4 int f1, f2, x;
5 x = 1; f1 = f(x);
6 x = 2; f2 = f(x);
7 if (f1 != 1 || f2 != 2)
8 abort ();
9 exit (0);
11 static int f(int x) { return x; }