* gcc.c-torture/compile/pr55921.c: Don't use matching constraints.

From-SVN: r195112
This commit is contained in:
Andreas Schwab 2013-01-11 17:08:51 +00:00 committed by Andreas Schwab
parent 3f287e4be5
commit 46feb01b90
2 changed files with 6 additions and 2 deletions

View file

@ -1,3 +1,7 @@
2013-01-11 Andreas Schwab <schwab@linux-m68k.org>
* gcc.c-torture/compile/pr55921.c: Don't use matching constraints.
2013-01-11 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
PR target/55719

View file

@ -14,8 +14,8 @@ foo (ucf *in, ucf *out, _Complex float r)
_Complex float cf;
ucf1.ll = in[i].ll;
__asm ("" : "=r" (cf) : "0" (ucf1.ll));
__asm ("" : "=r" (cf) : "r" (ucf1.ll));
cf *= r;
__asm ("" : "=r" (ucf1.ll) : "0" (cf));
__asm ("" : "=r" (ucf1.ll) : "r" (cf));
out[i].ll = ucf1.ll;
}