* final.c (output_asm_insn): Correct problem with -fverbose-asm.

From-SVN: r87338
This commit is contained in:
Geoffrey Keating 2004-09-11 01:54:14 +00:00 committed by Geoffrey Keating
parent a73b091d78
commit dc9d0b14b7
2 changed files with 6 additions and 2 deletions

View 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.

View 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;