C99 testsuite readiness: Compile more tests with -std=gnu89
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / di.c
blobe74817f4461e51f5958854049d94347ba50b0192
1 /* { dg-additional-options "-std=gnu89" } */
3 long long
4 foo (a, b)
5 long long a, b;
7 return a * b;
10 main ()
12 int a = foo ((long long) 2, (long long) 3);
13 printf ("%d\n", a);