Commit 46feb01b by Andreas Schwab Committed by Andreas Schwab

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

From-SVN: r195112
parent 3f287e4b
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> 2013-01-11 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
PR target/55719 PR target/55719
......
...@@ -14,8 +14,8 @@ foo (ucf *in, ucf *out, _Complex float r) ...@@ -14,8 +14,8 @@ foo (ucf *in, ucf *out, _Complex float r)
_Complex float cf; _Complex float cf;
ucf1.ll = in[i].ll; ucf1.ll = in[i].ll;
__asm ("" : "=r" (cf) : "0" (ucf1.ll)); __asm ("" : "=r" (cf) : "r" (ucf1.ll));
cf *= r; cf *= r;
__asm ("" : "=r" (ucf1.ll) : "0" (cf)); __asm ("" : "=r" (ucf1.ll) : "r" (cf));
out[i].ll = ucf1.ll; out[i].ll = ucf1.ll;
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment