aboutsummaryrefslogtreecommitdiff
path: root/gcc/gcse.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2004-09-18 19:47:10 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2004-09-18 19:47:10 +0000
commit454ff5cbf0544db194bc0b1a87902f913ab93faa (patch)
tree415e77fa8943b51c9cb97549ca6147abb08d118f /gcc/gcse.c
parent112cdef5e66fccce5475fabb5317805e012dc212 (diff)
downloadgcc-454ff5cbf0544db194bc0b1a87902f913ab93faa.zip
gcc-454ff5cbf0544db194bc0b1a87902f913ab93faa.tar.gz
gcc-454ff5cbf0544db194bc0b1a87902f913ab93faa.tar.bz2
alias.c, [...]: Fix comment typos.
* alias.c, crtstuff.c, dbxout.c, domwalk.c, domwalk.h, gcc.c, gcse.c, global.c, lambda-code.c, loop.c, mips-tdump.c, optabs.h, predict.c, reg-stack.c, regclass.c, sched-rgn.c, tree-optimize.c, tree-ssa-dom.c, tree-ssa-forwprop.c, tree-ssa-operands.c, tree-ssa-phiopt.c, tree-ssa-threadupdate.c: Fix comment typos. From-SVN: r87707
Diffstat (limited to 'gcc/gcse.c')
-rw-r--r--gcc/gcse.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/gcse.c b/gcc/gcse.c
index 32d4d44..7ad4f7e 100644
--- a/gcc/gcse.c
+++ b/gcc/gcse.c
@@ -453,7 +453,7 @@ static int reg_set_table_size;
/* This is a list of expressions which are MEMs and will be used by load
or store motion.
Load motion tracks MEMs which aren't killed by
- anything except itself. (ie, loads and stores to a single location).
+ anything except itself. (i.e., loads and stores to a single location).
We can then allow movement of these MEM refs with a little special
allowance. (all stores copy the same value to the reaching reg used
for the loads). This means all values used to store into memory must have
@@ -2768,7 +2768,7 @@ find_avail_set (int regno, rtx insn)
struct expr *set1 = 0;
/* Loops are not possible here. To get a loop we would need two sets
- available at the start of the block containing INSN. ie we would
+ available at the start of the block containing INSN. i.e. we would
need two sets like this available at the start of the block:
(set (reg X) (reg Y))
@@ -2814,7 +2814,7 @@ find_avail_set (int regno, rtx insn)
if (! REG_P (src))
break;
- /* Follow the copy chain, ie start another iteration of the loop
+ /* Follow the copy chain, i.e. start another iteration of the loop
and see if we have an available copy into SRC. */
regno = REGNO (src);
}