OSDN Git Service

gcc/
authormatz <matz@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 5 Oct 2007 15:36:16 +0000 (15:36 +0000)
committermatz <matz@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 5 Oct 2007 15:36:16 +0000 (15:36 +0000)
 PR inline-asm/33600
 * function.c (match_asm_constraints_1): Check for input
 being used in the outputs.

testsuite/
 * gcc.target/i386/pr33600.c: New testcase.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@129035 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/function.c
gcc/testsuite/ChangeLog
gcc/testsuite/gcc.target/i386/pr33600.c [new file with mode: 0644]

index 70c369a..8c6c773 100644 (file)
@@ -1,3 +1,9 @@
+2007-10-05  Michael Matz  <matz@suse.de>
+
+       PR inline-asm/33600
+       * function.c (match_asm_constraints_1): Check for input
+       being used in the outputs.
+
 2007-10-05  Richard Guenther  <rguenther@suse.de>
 
        * tree-cfg.c (verify_gimple_expr): Accept OBJ_TYPE_REF.
index c373684..d05d1b2 100644 (file)
@@ -5716,7 +5716,7 @@ match_asm_constraints_1 (rtx insn, rtx *p_sets, int noutputs)
         which wouldn't have happen without this pass.  So, iterate over
         all operands and replace all occurences of the register used.  */
       for (j = 0; j < noutputs; j++)
-       if (!rtx_equal_p (SET_DEST (p_sets[j]), output)
+       if (!rtx_equal_p (SET_DEST (p_sets[j]), input)
            && reg_overlap_mentioned_p (input, SET_DEST (p_sets[j])))
          SET_DEST (p_sets[j]) = replace_rtx (SET_DEST (p_sets[j]),
                                              input, output);
index ca33da8..6b06d14 100644 (file)
@@ -1,3 +1,8 @@
+2007-10-05  Michael Matz  <matz@suse.de>
+
+       PR inline-asm/33600
+       * gcc.target/i386/pr33600.c: New testcase.
+
 2007-10-05  Richard Guenther  <rguenther@suse.de>
 
        * g++.dg/tree-ssa/obj-type-ref.C: New testcase.
diff --git a/gcc/testsuite/gcc.target/i386/pr33600.c b/gcc/testsuite/gcc.target/i386/pr33600.c
new file mode 100644 (file)
index 0000000..a2ab91e
--- /dev/null
@@ -0,0 +1,10 @@
+/* { dg-do compile } */
+/* { dg-options "-O2" } */
+int f(int n)
+{
+        int x;
+
+        asm("" : "=&c"(n), "=r"(x) : "1"(n), "0"(n));
+
+        return n;
+}