diff options
author | reichelt <reichelt@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-02-24 21:47:26 +0000 |
---|---|---|
committer | reichelt <reichelt@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-02-24 21:47:26 +0000 |
commit | 822e391f5e0b9d59c77dce31ac9eafc807b4e096 (patch) | |
tree | 42ae786e6a9fe0fcb904dc11ee9e36ca7e2eb8a5 /gcc/gcse.c | |
parent | 349393288602ef00c04a3cc9e7f503b5692ba7a9 (diff) | |
download | gcc-822e391f5e0b9d59c77dce31ac9eafc807b4e096.tar.gz |
* ChangeLog.5: Fix log message typo(s).
* ChangeLog.7: Likewise.
* ChangeLog.tree-ssa: Likewise.
* cfgexpand.c: Fix comment typo(s).
* conflict.c: Likewise.
* defaults.h: Likewise.
* dwarf2out.c: Likewise.
* gcse.c: Likewise.
* ggc-page.c: Likewise.
* tree-eh.c: Likewise.
* tree-ssa-dom.c: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@95516 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/gcse.c')
-rw-r--r-- | gcc/gcse.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/gcse.c b/gcc/gcse.c index 39a844f972b..456a857259f 100644 --- a/gcc/gcse.c +++ b/gcc/gcse.c @@ -4130,7 +4130,7 @@ pre_edge_insert (struct edge_list *edge_list, struct expr **index_map) if (! occr->deleted_p) continue; - /* Insert this expression on this edge if if it would + /* Insert this expression on this edge if it would reach the deleted occurrence in BB. */ if (!TEST_BIT (inserted[e], j)) { @@ -5846,7 +5846,7 @@ find_loads (rtx x, rtx store_pattern, int after) /* Check if INSN kills the store pattern X (is aliased with it). AFTER is true if we are checking the case when store X occurs - after the insn. Return true if it it does. */ + after the insn. Return true if it does. */ static bool store_killed_in_insn (rtx x, rtx x_regs, rtx insn, int after) |