diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2004-09-05 16:05:06 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2004-09-05 16:05:06 +0000 |
commit | 8c27b7d4d1b35fa0d2f514a98d0524eff2278e40 (patch) | |
tree | f62d741d707e9201cb9c5b7758045bd92d649415 /gcc/tree-inline.c | |
parent | 2a7e31df70cf600dfaa401cb426578994739bce0 (diff) | |
download | gcc-8c27b7d4d1b35fa0d2f514a98d0524eff2278e40.tar.gz |
c-common.c, [...]: Fix comment formatting.
* c-common.c, c-decl.c, combine.c, defaults.h, fold-const.c,
gimplify.c, gthr-nks.h, hooks.c, lambda-code.c, lambda-mat.c,
stor-layout.c, target.h, tree-cfg.c, tree-chrec.c,
tree-if-conv.c, tree-inline.c, tree-into-ssa.c,
tree-mudflap.c, tree-optimize.c, tree-scalar-evolution.c,
tree-ssa-alias.c, tree-ssa-ccp.c, tree-ssa-dce.c,
tree-ssa-pre.c, tree-vectorizer.c, tree-vectorizer.h, tree.h,
vec.h: Fix comment formatting.
From-SVN: r87105
Diffstat (limited to 'gcc/tree-inline.c')
-rw-r--r-- | gcc/tree-inline.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/tree-inline.c b/gcc/tree-inline.c index 0200bfc5966..71e9ef2731b 100644 --- a/gcc/tree-inline.c +++ b/gcc/tree-inline.c @@ -183,7 +183,7 @@ remap_decl (tree decl, inline_data *id) walk_tree (&DECL_SIZE (t), copy_body_r, id, NULL); walk_tree (&DECL_SIZE_UNIT (t), copy_body_r, id, NULL); - /* If fields, do likewise for offset and qualifier. */ + /* If fields, do likewise for offset and qualifier. */ if (TREE_CODE (t) == FIELD_DECL) { walk_tree (&DECL_FIELD_OFFSET (t), copy_body_r, id, NULL); @@ -691,7 +691,7 @@ setup_one_parameter (inline_data *id, tree p, tree value, tree fn, /* Make an equivalent VAR_DECL. Note that we must NOT remap the type here since the type of this decl must be visible to the calling - function. */ + function. */ var = copy_decl_for_inlining (p, fn, VARRAY_TREE (id->fns, 0)); /* Register the VAR_DECL as the equivalent for the PARM_DECL; @@ -1965,7 +1965,7 @@ walk_type_fields (tree type, walk_tree_fn func, void *data, void *htab) case ARRAY_TYPE: /* Don't follow this nodes's type if a pointer for fear that we'll - have infinite recursion. Those types are uninteresting anyway. */ + have infinite recursion. Those types are uninteresting anyway. */ if (!POINTER_TYPE_P (TREE_TYPE (type)) && TREE_CODE (TREE_TYPE (type)) != OFFSET_TYPE) WALK_SUBTREE (TREE_TYPE (type)); |