C99 testsuite readiness: Compile more tests with -std=gnu89
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 960830-1.c
blobe32e01b956192f6c39d613583f69d162f67d5c0f
1 /* { dg-additional-options "-std=gnu89" } */
3 #ifdef __i386__
4 f (rp)
5 unsigned int *rp;
7 __asm__ ("mull %3" : "=a" (rp[0]), "=d" (rp[1]) : "%0" (7), "rm" (7));
10 main ()
12 unsigned int s[2];
14 f (s);
15 if (s[1] != 0 || s[0] != 49)
16 abort ();
17 exit (0);
19 #else
20 main ()
22 exit (0);
24 #endif