aboutsummaryrefslogtreecommitdiff
path: root/gcc/gimplify.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@codesourcery.com>2005-09-06 02:05:07 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2005-09-06 02:05:07 +0000
commit57b51d4d635b49b94ace7d83ef0294f58dcb64f7 (patch)
tree5be91040457888b19bef16f6de412ce62f0c496c /gcc/gimplify.c
parent7a7d74a971853f7186bec8d87ca8171c21243e3e (diff)
downloadgcc-57b51d4d635b49b94ace7d83ef0294f58dcb64f7.zip
gcc-57b51d4d635b49b94ace7d83ef0294f58dcb64f7.tar.gz
gcc-57b51d4d635b49b94ace7d83ef0294f58dcb64f7.tar.bz2
gimplify.c, [...]: Fix comment typos.
* gimplify.c, ipa-prop.h, varasm.c, config/vxlib.c, config/vxworks.h, config/crx/crx.c, config/ms1/ms1.c, config/ms1/ms1.md, config/rs6000/rs6000.c: Fix comment typos. Follow spelling conventions. * doc/invoke.texi: Follow spelling conventions. From-SVN: r103925
Diffstat (limited to 'gcc/gimplify.c')
-rw-r--r--gcc/gimplify.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/gimplify.c b/gcc/gimplify.c
index c72e09e..a2fc7c8 100644
--- a/gcc/gimplify.c
+++ b/gcc/gimplify.c
@@ -4460,7 +4460,7 @@ gimplify_expr (tree *expr_p, tree *pre_p, tree *post_p,
exception here, as all we are doing here is ensuring that
we read the bytes that make up the type. We use
create_tmp_var_raw because create_tmp_var will abort when
- given a TREE_ADDRESSSABLE type. */
+ given a TREE_ADDRESSABLE type. */
tree tmp = create_tmp_var_raw (type, "vol");
gimple_add_tmp_var (tmp);
*expr_p = build (MODIFY_EXPR, type, tmp, *expr_p);