diff options
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 39214c3..04787e4 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; |