diff options
author | Geoffrey Keating <geoffk@apple.com> | 2004-09-11 01:54:14 +0000 |
---|---|---|
committer | Geoffrey Keating <geoffk@gcc.gnu.org> | 2004-09-11 01:54:14 +0000 |
commit | dc9d0b14b764ae39d8421cb83c0a3d34f16e12fc (patch) | |
tree | d35bace9859da645c0e6aca12936570d056bb2e3 /gcc/final.c | |
parent | a73b091d78d0e481c2055e07d37331621fa3136e (diff) | |
download | gcc-dc9d0b14b764ae39d8421cb83c0a3d34f16e12fc.tar.gz |
* final.c (output_asm_insn): Correct problem with -fverbose-asm.
From-SVN: r87338
Diffstat (limited to 'gcc/final.c')
-rw-r--r-- | gcc/final.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/final.c b/gcc/final.c index 39214c3a427..04787e46d1c 100644 --- a/gcc/final.c +++ b/gcc/final.c @@ -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; |