aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Elliston <bje@au.ibm.com>2008-03-20 04:31:53 +0000
committerBen Elliston <bje@gcc.gnu.org>2008-03-20 15:31:53 +1100
commit41129be233d34e1d304067113110fe2bdbf77322 (patch)
tree740ac7dda0a533f54d526d77963b33987382e233
parent2e7a391e0f0cbf6277093c489166aa155feb2454 (diff)
downloadgcc-41129be233d34e1d304067113110fe2bdbf77322.zip
gcc-41129be233d34e1d304067113110fe2bdbf77322.tar.gz
gcc-41129be233d34e1d304067113110fe2bdbf77322.tar.bz2
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
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/final.c2
-rw-r--r--gcc/regmove.c2
3 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 40870539..c298a20 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+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>
PR target/14552
diff --git a/gcc/final.c b/gcc/final.c
index 189b83f..2968174 100644
--- a/gcc/final.c
+++ b/gcc/final.c
@@ -2221,7 +2221,7 @@ final_scan_insn (rtx insn, FILE *file, int optimize ATTRIBUTE_UNUSED,
/* Get out the operand values. */
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;
this_is_asm_operands = insn;
expanded = expand_location (loc);
diff --git a/gcc/regmove.c b/gcc/regmove.c
index 925cb9d..81891b9 100644
--- a/gcc/regmove.c
+++ b/gcc/regmove.c
@@ -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
change this not to REG_UNUSED meaning that the register
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
changed. */
rtx note = find_reg_note (insn, REG_DEAD, reg);