aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/execute/960830-1.c
blob: d87b39e2da36de752093dffb74ec1d30611efebb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifdef __i386__
f (rp)
     unsigned int *rp;
{
  __asm__ ("mull %3" : "=a" (rp[0]), "=d" (rp[1]) : "%0" (7), "rm" (7));
}

main ()
{
  unsigned int s[2];

  f (s);
  if (s[1] != 0 || s[0] != 49)
    abort ();
 exit (0);
}
#else
main ()
{
  exit (0);
}
#endif