diff options
author | Kazu Hirata <kazu@hxi.com> | 2001-10-09 14:03:13 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2001-10-09 14:03:13 +0000 |
commit | 2ba84f36eaafd1d53db407e775fff7a286efe004 (patch) | |
tree | 2bca05f2ef10d55e4d51ec6066c42bb45253a03c /gcc/tree-inline.c | |
parent | 77332b4e0b7f45f1cbba6b624765fa041c85efa7 (diff) | |
download | gcc-2ba84f36eaafd1d53db407e775fff7a286efe004.zip gcc-2ba84f36eaafd1d53db407e775fff7a286efe004.tar.gz gcc-2ba84f36eaafd1d53db407e775fff7a286efe004.tar.bz2 |
c-common.h: Fix comment formatting.
* c-common.h: Fix comment formatting.
* c-dump.c: Likewise.
* cfg.c: Likewise.
* diagnostic.h: Likewise.
* except.c: Likewise.
* gcc.h: Likewise.
* gcov-io.h: Likewise.
* genattrtab.c: Likewise.
* output.h: Likewise.
* predict.h: Likewise.
* reload1.c: Likewise.
* reload.h: Likewise.
* resource.h: Likewise.
* scan.h: Likewise.
* system.h: Likewise.
* tree.h: Likewise.
* tree-inline.c: Likewise.
* tsystem.h: Likewise.
* varasm.c: Likewise.
* xcoffout.h: Likewise.
From-SVN: r46122
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 da3f93a..1018408 100644 --- a/gcc/tree-inline.c +++ b/gcc/tree-inline.c @@ -164,7 +164,7 @@ remap_decl (decl, id) { /* For a VAR_DECL of anonymous type, we must also copy the member VAR_DECLS here and rechain the - DECL_ANON_UNION_ELEMS. */ + DECL_ANON_UNION_ELEMS. */ tree members = NULL; tree src; @@ -1093,10 +1093,10 @@ walk_tree (tp, func, data, htab_) void **slot; /* Don't walk the same tree twice, if the user has requested - that we avoid doing so. */ + that we avoid doing so. */ if (htab_find (htab, *tp)) return NULL_TREE; - /* If we haven't already seen this node, add it to the table. */ + /* If we haven't already seen this node, add it to the table. */ slot = htab_find_slot (htab, *tp, INSERT); *slot = *tp; } |