summaryrefslogtreecommitdiff
path: root/gcc/gcse.c
diff options
context:
space:
mode:
authorkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2003-08-19 23:22:00 +0000
committerkazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4>2003-08-19 23:22:00 +0000
commit91c82c20c59b724ac410dd75d378e0798edb4e1b (patch)
treecfd217c7e698d0aaf23ec02241ccbff7719cb9c0 /gcc/gcse.c
parent16cdef4540f82fb1890edce9cc45abab9e6b9f5d (diff)
downloadgcc-91c82c20c59b724ac410dd75d378e0798edb4e1b.tar.gz
* builtins.c: Fix comment typos.
* c-common.c: Likewise. * c-decl.c: Likewise. * c-pretty-print.c: Likewise. * cfgbuild.c: Likewise. * cfglayout.c: Likewise. * cfgloopanal.c: Likewise. * cgraphunit.c: Likewise. * cppfiles.c: Likewise. * dwarfout.c: Likewise. * expr.c: Likewise. * fold-const.c: Likewise. * gcse.c: Likewise. * ggc-page.c: Likewise. * haifa-sched.c: Likewise. * pretty-print.c: Likewise. * tree.c: Likewise. * tree.h: Likewise. * value-prof.c: Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@70583 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/gcse.c')
-rw-r--r--gcc/gcse.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/gcse.c b/gcc/gcse.c
index a09b7fdc34c..3233d8494e2 100644
--- a/gcc/gcse.c
+++ b/gcc/gcse.c
@@ -4530,7 +4530,7 @@ find_implicit_sets (void)
count = 0;
FOR_EACH_BB (bb)
- /* Check for more than one sucessor. */
+ /* Check for more than one successor. */
if (bb->succ && bb->succ->succ_next)
{
cond = fis_get_condition (bb->end);
@@ -6756,7 +6756,7 @@ trim_ld_motion_mems (void)
/* This routine will take an expression which we are replacing with
a reaching register, and update any stores that are needed if
that expression is in the ld_motion list. Stores are updated by
- copying their SRC to the reaching register, and then storeing
+ copying their SRC to the reaching register, and then storing
the reaching register into the store location. These keeps the
correct value in the reaching register for the loads. */