diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-04-08 17:01:17 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-04-08 17:01:17 +0000 |
commit | 9ca2c29a3651d0d31a0f4821744d20a91f787acd (patch) | |
tree | 9a89407bf0978b32e50e4f9c4dbb294a3c14cef7 /gcc/tree-ssa-operands.c | |
parent | 179eba089745516ac9d2167f9d146f5c04fc6813 (diff) | |
download | gcc-9ca2c29a3651d0d31a0f4821744d20a91f787acd.tar.gz |
* builtins.c, config/arm/arm.c, config/i386/cygwin.h,
config/i386/i386.c, config/ia64/ia64.c, config/s390/fixdfdi.h,
config/sh/sh.c, config/sh/sh.h, df-scan.c, except.c,
haifa-sched.c, optabs.c, rtl.h, sched-deps.c, sched-int.h,
sched-rgn.c, tree-inline.h, tree-ssa-dom.c,
tree-ssa-loop-prefetch.c, tree-ssa-operands.c,
tree-vect-patterns.c, tree-vrp.c: Fix comment typos. Follow
spelling convensions.
* config/ia64/ia64.opt, doc/contrib.texi, doc/invoke.texi,
doc/passes.texi, doc/tm.texi, doc/tree-ssa.texi: Fix comment
typos. Follow spelling conventions.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@112782 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-ssa-operands.c')
-rw-r--r-- | gcc/tree-ssa-operands.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/tree-ssa-operands.c b/gcc/tree-ssa-operands.c index 44be47458dd..ff0d4d82cb6 100644 --- a/gcc/tree-ssa-operands.c +++ b/gcc/tree-ssa-operands.c @@ -412,7 +412,7 @@ set_virtual_use_link (use_operand_p ptr, tree stmt) } while (0) /* Initializes immediate use at USE_PTR to value VAL, and links it to the list - of immeditate uses. STMT is the current statement. */ + of immediate uses. STMT is the current statement. */ #define INITIALIZE_USE(USE_PTR, VAL, STMT) \ do \ @@ -492,7 +492,7 @@ add_mustdef_op (tree stmt, tree op, mustdef_optype_p *last) } /* Takes elements from build_defs and turns them into def operands of STMT. - TODO -- Given that def operands list is not neccessarily sorted, merging + TODO -- Given that def operands list is not necessarily sorted, merging the operands this way does not make much sense. -- Make build_defs VEC of tree *. */ @@ -579,7 +579,7 @@ finalize_ssa_defs (tree stmt) } /* Takes elements from build_uses and turns them into use operands of STMT. - TODO -- Given that use operands list is not neccessarily sorted, merging + TODO -- Given that use operands list is not necessarily sorted, merging the operands this way does not make much sense. -- Make build_uses VEC of tree *. */ |