Commit 41129be2 by Ben Elliston Committed by Ben Elliston

regmove.c (try_auto_increment): Fix spelling error in comment.

	* regmove.c (try_auto_increment): Fix spelling error in comment.
	* final.c (final_scan_insn): Likewise.

From-SVN: r133362
parent 2e7a391e
2008-03-20 Ben Elliston <bje@au.ibm.com>
* regmove.c (try_auto_increment): Fix spelling error in comment.
* final.c (final_scan_insn): Likewise.
2008-03-20 Uros Bizjak <ubizjak@gmail.com> 2008-03-20 Uros Bizjak <ubizjak@gmail.com>
PR target/14552 PR target/14552
......
...@@ -2221,7 +2221,7 @@ final_scan_insn (rtx insn, FILE *file, int optimize ATTRIBUTE_UNUSED, ...@@ -2221,7 +2221,7 @@ final_scan_insn (rtx insn, FILE *file, int optimize ATTRIBUTE_UNUSED,
/* Get out the operand values. */ /* Get out the operand values. */
string = decode_asm_operands (body, ops, NULL, NULL, NULL, &loc); string = decode_asm_operands (body, ops, NULL, NULL, NULL, &loc);
/* Inhibit dieing on what would otherwise be compiler bugs. */ /* Inhibit dying on what would otherwise be compiler bugs. */
insn_noperands = noperands; insn_noperands = noperands;
this_is_asm_operands = insn; this_is_asm_operands = insn;
expanded = expand_location (loc); expanded = expand_location (loc);
......
...@@ -193,7 +193,7 @@ try_auto_increment (rtx insn, rtx inc_insn, rtx inc_insn_set, rtx reg, ...@@ -193,7 +193,7 @@ try_auto_increment (rtx insn, rtx inc_insn, rtx inc_insn_set, rtx reg,
/* If there is a REG_DEAD note on this insn, we must /* If there is a REG_DEAD note on this insn, we must
change this not to REG_UNUSED meaning that the register change this not to REG_UNUSED meaning that the register
is set, but the value is dead. Failure to do so will is set, but the value is dead. Failure to do so will
result in a sched1 dieing -- when it recomputes lifetime result in sched1 dying -- when it recomputes lifetime
information, the number of REG_DEAD notes will have information, the number of REG_DEAD notes will have
changed. */ changed. */
rtx note = find_reg_note (insn, REG_DEAD, reg); rtx note = find_reg_note (insn, REG_DEAD, reg);
......
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