diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2004-09-18 19:47:10 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2004-09-18 19:47:10 +0000 |
commit | 454ff5cbf0544db194bc0b1a87902f913ab93faa (patch) | |
tree | 415e77fa8943b51c9cb97549ca6147abb08d118f /gcc/mips-tdump.c | |
parent | 112cdef5e66fccce5475fabb5317805e012dc212 (diff) | |
download | gcc-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/mips-tdump.c')
-rw-r--r-- | gcc/mips-tdump.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/mips-tdump.c b/gcc/mips-tdump.c index cb3669a..d320330 100644 --- a/gcc/mips-tdump.c +++ b/gcc/mips-tdump.c @@ -631,7 +631,7 @@ type_to_string (AUXU *aux_ptr, int index, FDR *fdp) /* * Snarf up any array bounds in the correct order. Arrays * store 5 successive words in the aux. table: - * word 0 RNDXR to type of the bounds (ie, int) + * word 0 RNDXR to type of the bounds (i.e., int) * word 1 Current file descriptor index * word 2 low bound * word 3 high bound (or -1 if []) @@ -689,7 +689,7 @@ type_to_string (AUXU *aux_ptr, int index, FDR *fdp) int first_array = i; int j; - /* Print array bounds reversed (ie, in the order the C + /* Print array bounds reversed (i.e., in the order the C programmer writes them). C is such a fun language.... */ while (i < 5 && qualifiers[i+1].type == tq_Array) |