2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 20000804-1.c
blob782764b31bb340bb757663bac2c078b4b07bcd8a
1 /* This does not work on m68hc11 or h8300 due to the use of an asm
2 statement to force a 'long long' (64-bits) to go in a register. */
3 /* { dg-do assemble { xfail m6811-*-* m6812-*-* h8300-*-* } } */
5 /* Copyright (C) 2000, 2003 Free Software Foundation */
6 __complex__ long long f ()
8 int i[99];
9 __complex__ long long v;
11 v += f ();
12 asm("": "+r" (v) : "r" (0), "r" (1));
13 v = 2;
14 return v;
15 g (&v);