diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2003-07-06 23:23:46 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2003-07-06 23:23:46 +0000 |
commit | 9bcb9aae27c7ffe6a74521f951918739d87518ba (patch) | |
tree | b9ad3c88816bfbd4d57c6c8b46f31b765727c245 /gcc/cp/rtti.c | |
parent | 2a43945fa59a5d450f24b2c47c35c8fef8f959a8 (diff) | |
download | gcc-9bcb9aae27c7ffe6a74521f951918739d87518ba.zip gcc-9bcb9aae27c7ffe6a74521f951918739d87518ba.tar.gz gcc-9bcb9aae27c7ffe6a74521f951918739d87518ba.tar.bz2 |
call.c: Fix comment formatting.
* call.c: Fix comment formatting.
* class.c: Likewise.
* cp-tree.h: Likewise.
* decl.c: Likewise.
* decl2.c: Likewise.
* error.c: Likewise.
* method.c: Likewise.
* name-lookup.c: Likewise.
* parser.c: Likewise.
* pt.c: Likewise.
* rtti.c: Likewise.
* search.c: Likewise.
* typeck.c: Likewise.
From-SVN: r69022
Diffstat (limited to 'gcc/cp/rtti.c')
-rw-r--r-- | gcc/cp/rtti.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cp/rtti.c b/gcc/cp/rtti.c index af494e3..33745e5 100644 --- a/gcc/cp/rtti.c +++ b/gcc/cp/rtti.c @@ -73,7 +73,7 @@ Boston, MA 02111-1307, USA. */ /* The IDENTIFIER_NODE naming the real class. */ #define TINFO_REAL_NAME(NODE) TREE_PURPOSE (NODE) -/* A varray of all tinfo decls that haven't yet been emitted. */ +/* A varray of all tinfo decls that haven't yet been emitted. */ varray_type unemitted_tinfo_decls; static tree build_headof (tree); @@ -373,7 +373,7 @@ get_tinfo_decl (tree type) /* Remember the type it is for. */ TREE_TYPE (name) = type; - /* Add decl to the global array of tinfo decls. */ + /* Add decl to the global array of tinfo decls. */ my_friendly_assert (unemitted_tinfo_decls != 0, 20030312); VARRAY_PUSH_TREE (unemitted_tinfo_decls, d); } |