* final.c (output_asm_insn): Correct problem with -fverbose-asm.
From-SVN: r87338
This commit is contained in:
parent
a73b091d78
commit
dc9d0b14b7
2 changed files with 6 additions and 2 deletions
|
@ -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.
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue