* gcc.c-torture/compile/pr55921.c: Don't use matching constraints.
authorAndreas Schwab <schwab@linux-m68k.org>
Fri, 11 Jan 2013 17:08:51 +0000 (17:08 +0000)
committerAndreas Schwab <schwab@gcc.gnu.org>
Fri, 11 Jan 2013 17:08:51 +0000 (17:08 +0000)
From-SVN: r195112

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.c-torture/compile/pr55921.c

index 2d463399120a8ea0346c1df7d84c85c8611ce0dc..731bf2c0e91751de5f8f029c493cab87d86dfa85 100644 (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
index 8ac9e9b6a64eb869871773643976e96f6150f395..94b7bceb87c5a49c1f1672ce05d78ca2c253f7ae 100644 (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;
 }