aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRask Ingemann Lambertsen <rask@gcc.gnu.org>2007-11-14 12:28:41 +0000
committerRask Ingemann Lambertsen <rask@gcc.gnu.org>2007-11-14 12:28:41 +0000
commit359125444fe8f0205ae6d262eb23acde027f6602 (patch)
tree31e04171913f13e3ce9892458aeb48d165e6845d /gcc
parent713c31453c379279d1e3cb622c8f007cb43042e0 (diff)
downloadgcc-359125444fe8f0205ae6d262eb23acde027f6602.zip
gcc-359125444fe8f0205ae6d262eb23acde027f6602.tar.gz
gcc-359125444fe8f0205ae6d262eb23acde027f6602.tar.bz2
global.c (rest_of_handle_global_alloc): Fix comment typos.
* global.c (rest_of_handle_global_alloc): Fix comment typos. * config/sh/sh.c (sh_rtx_costs): Likewise. * ChangeLog: Likewise. From-SVN: r130176
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog12
-rw-r--r--gcc/config/sh/sh.c4
-rw-r--r--gcc/global.c2
3 files changed, 12 insertions, 6 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index d7b8bea..f07274c 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,9 @@
+2007-11-14 Rask Ingemann Lambertsen <rask@sygehus.dk>
+
+ * global.c (rest_of_handle_global_alloc): Fix comment typos.
+ * config/sh/sh.c (sh_rtx_costs): Likewise.
+ * ChangeLog: Likewise.
+
2007-11-13 Sebastian Pop <sebastian.pop@amd.com>
* tree-chrec.h (build_polynomial_chrec): RHS of a chrec
@@ -14667,18 +14673,18 @@
and adjust recursive call accordingly.
(prescan_insns_for_dce): Update call to delete_insn_p.
-2007-06-30 Rask Ingemann Lambertsen <rask@sygehus.dk>
+2007-06-30 Rask Ingemann Lambertsen <rask@sygehus.dk>
* combine.c (combine_validate_cost): New parameter NEWOTHERPAT.
(try_combine): Move potential calls to undo_all() so they happen
before we commit to using the combined insns.
-2006-06-30 Jan Hubicka <jh@suse.cz>
+2007-06-30 Jan Hubicka <jh@suse.cz>
* loop-unroll.c (unroll_loop_runtime_iterations): Unshare newly emit
code.
-2006-06-30 Thomas Neumann <tneumann@users.sourceforge.net>
+2007-06-30 Thomas Neumann <tneumann@users.sourceforge.net>
* ipa.c (cgraph_postorder): Cast according to the coding conventions.
(cgraph_remove_unreachable_nodes): Likewise.
diff --git a/gcc/config/sh/sh.c b/gcc/config/sh/sh.c
index 5a80234..97cb013 100644
--- a/gcc/config/sh/sh.c
+++ b/gcc/config/sh/sh.c
@@ -2408,7 +2408,7 @@ sh_rtx_costs (rtx x, int code, int outer_code, int *total)
&& CONST_OK_FOR_K08 (INTVAL (x)))
*total = 1;
/* prepare_cmp_insn will force costly constants int registers before
- the cbrach[sd]i4 patterns can see them, so preserve potentially
+ the cbranch[sd]i4 patterns can see them, so preserve potentially
interesting ones not covered by I08 above. */
else if (outer_code == COMPARE
&& ((unsigned HOST_WIDE_INT) INTVAL (x)
@@ -2435,7 +2435,7 @@ sh_rtx_costs (rtx x, int code, int outer_code, int *total)
if (TARGET_SHMEDIA)
*total = COSTS_N_INSNS (4);
/* prepare_cmp_insn will force costly constants int registers before
- the cbrachdi4 pattern can see them, so preserve potentially
+ the cbranchdi4 pattern can see them, so preserve potentially
interesting ones. */
else if (outer_code == COMPARE && GET_MODE (x) == DImode)
*total = 1;
diff --git a/gcc/global.c b/gcc/global.c
index 90f6da8..de6beb9 100644
--- a/gcc/global.c
+++ b/gcc/global.c
@@ -1771,7 +1771,7 @@ rest_of_handle_global_alloc (void)
reload_completed = !failure;
/* The world has changed so much that at this point we might as well
- just rescan everything. Not that df_rescan_all_insns is not
+ just rescan everything. Note that df_rescan_all_insns is not
going to help here because it does not touch the artificial uses
and defs. */
df_finish_pass (true);