Commit 2c16c666 by Richard Stallman

(output_asm_insn): Advance over the = when processing %=.

From-SVN: r2447
parent 2166571b
...@@ -2051,7 +2051,10 @@ output_asm_insn (template, operands) ...@@ -2051,7 +2051,10 @@ output_asm_insn (template, operands)
compilation. This is useful for making local labels that are compilation. This is useful for making local labels that are
referred to more than once in a given insn. */ referred to more than once in a given insn. */
else if (*p == '=') else if (*p == '=')
fprintf (asm_out_file, "%d", insn_counter); {
p++;
fprintf (asm_out_file, "%d", insn_counter);
}
/* % followed by a letter and some digits /* % followed by a letter and some digits
outputs an operand in a special way depending on the letter. outputs an operand in a special way depending on the letter.
Letters `acln' are implemented directly. Letters `acln' are implemented directly.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment