aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree.c
diff options
context:
space:
mode:
authorVolker Reichelt <reichelt@igpm.rwth-aachen.de>2005-07-28 16:30:00 +0000
committerVolker Reichelt <reichelt@gcc.gnu.org>2005-07-28 16:30:00 +0000
commit206048bd415aa4a985b6a2929b91bb86962f468f (patch)
tree2ed1920be939f29875e5f270976036d79e5714a2 /gcc/tree.c
parentc98718390719e6c7e7ded4b6c74abb72cab47022 (diff)
downloadgcc-206048bd415aa4a985b6a2929b91bb86962f468f.zip
gcc-206048bd415aa4a985b6a2929b91bb86962f468f.tar.gz
gcc-206048bd415aa4a985b6a2929b91bb86962f468f.tar.bz2
builtins.c: Fix comment typo(s).
* builtins.c: Fix comment typo(s). * genautomata.c: Likewise. * gimplify.c: Likewise. * tree-dfa.c: Likewise. * tree-flow-inline.h: Likewise. * tree-into-ssa.c: Likewise. * tree-ssa-alias.c: Likewise. * tree-ssa-ccp.c: Likewise. * tree-ssa-copy.c: Likewise. * tree-ssa-dce.c: Likewise. * tree-ssa-dom.c: Likewise. * tree-ssa-operands.c: Likewise. * tree-tailcall.c: Likewise. * tree-vectorizer.c: Likewise. * tree-vrp.c: Likewise. * tree.c: Likewise. From-SVN: r102491
Diffstat (limited to 'gcc/tree.c')
-rw-r--r--gcc/tree.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree.c b/gcc/tree.c
index 770ed31..39e2f1f 100644
--- a/gcc/tree.c
+++ b/gcc/tree.c
@@ -883,7 +883,7 @@ cst_and_fits_in_hwi (tree x)
}
/* Return a new VECTOR_CST node whose type is TYPE and whose values
- are in a list pointed by VALS. */
+ are in a list pointed to by VALS. */
tree
build_vector (tree type, tree vals)
@@ -926,7 +926,7 @@ build_vector_from_ctor (tree type, VEC(constructor_elt,gc) *v)
}
/* Return a new CONSTRUCTOR node whose type is TYPE and whose values
- are in the VEC pointed by VALS. */
+ are in the VEC pointed to by VALS. */
tree
build_constructor (tree type, VEC(constructor_elt,gc) *vals)
{