diff options
author | Kazu Hirata <kazu@codesourcery.com> | 2006-12-22 01:19:39 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2006-12-22 01:19:39 +0000 |
commit | 2e226e6699bdcf161e3738641490ca18b12faefa (patch) | |
tree | 4248e605c7adbfb3c83eaf3d9c6b6448e0edcdc7 /gcc/tree-ssa-operands.c | |
parent | 48c9a7f0dbf902685d3a289c32e42812e868b939 (diff) | |
download | gcc-2e226e6699bdcf161e3738641490ca18b12faefa.zip gcc-2e226e6699bdcf161e3738641490ca18b12faefa.tar.gz gcc-2e226e6699bdcf161e3738641490ca18b12faefa.tar.bz2 |
cgraphunit.c, [...]: Fix comment typos.
* cgraphunit.c, config/i386/i386.c, config/ia64/ia64.c, cse.c,
output.h, toplev.c, tree-affine.h, tree-flow.h,
tree-ssa-alias.c, tree-ssa-coalesce.c, tree-ssa-live.c,
tree-ssa-live.h, tree-ssa-operands.c, tree-ssa-ter.c,
tree-vrp.c, varpool.c: Fix comment typos.
From-SVN: r120137
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 a577727..dbbcf34 100644 --- a/gcc/tree-ssa-operands.c +++ b/gcc/tree-ssa-operands.c @@ -468,8 +468,8 @@ ssa_operand_alloc (unsigned size) if (size > ssa_operand_mem_size) ssa_operand_mem_size = OP_SIZE_3 * sizeof (struct voptype_d); - /* Fail if there is not enough space. If thre are this many operands - required, first make sure there isn't a different probem causing this + /* Fail if there is not enough space. If there are this many operands + required, first make sure there isn't a different problem causing this many operands. If the decision is that this is OK, then we can specially allocate a buffer just for this request. */ gcc_assert (size <= ssa_operand_mem_size); @@ -607,7 +607,7 @@ add_use_op (tree stmt, tree *op, use_optype_p last) /* Return a virtual op pointer with NUM elements which are all initialized to OP - and are linked into the immeidate uses for STMT. The new vop is appended + and are linked into the immediate uses for STMT. The new vop is appended after PREV. */ static inline voptype_p |