* final.c (output_asm_insn): Correct problem with -fverbose-asm.
authorGeoffrey Keating <geoffk@apple.com>
Sat, 11 Sep 2004 01:54:14 +0000 (01:54 +0000)
committerGeoffrey Keating <geoffk@gcc.gnu.org>
Sat, 11 Sep 2004 01:54:14 +0000 (01:54 +0000)
From-SVN: r87338

gcc/ChangeLog
gcc/final.c

index 8088d9f0189c5d3ea8beb1d1fab1c6d3ef5d086f..f5d0a00e487cbf9105341f7429d198bf9df61ee0 100644 (file)
@@ -1,3 +1,7 @@
+2004-09-10  Geoffrey Keating  <geoffk@apple.com>
+
+       * final.c (output_asm_insn): Correct problem with -fverbose-asm.
+
 2004-09-10  James E Wilson  <wilson@specifixinc.com>
 
        * emit-rtl.c (gen_const_vector): Renamed from gen_const_vector_0.
index 39214c3a427cc9c930513d6d7d4f118d7e033bea..04787e46d1ccd3f8a9c010a8328cbb6585e9fe77 100644 (file)
@@ -3120,7 +3120,7 @@ output_asm_insn (const char *template, rtx *operands)
              output_operand (operands[opnum], letter);
 
            if (!opoutput[opnum])
-             oporder[ops++] = c;
+             oporder[ops++] = opnum;
            opoutput[opnum] = 1;
 
            p = endptr;
@@ -3139,7 +3139,7 @@ output_asm_insn (const char *template, rtx *operands)
              output_operand (operands[opnum], 0);
 
            if (!opoutput[opnum])
-             oporder[ops++] = c;
+             oporder[ops++] = opnum;
            opoutput[opnum] = 1;
 
            p = endptr;