aboutsummaryrefslogtreecommitdiff
path: root/gcc/cp/rtti.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2003-07-06 23:23:46 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2003-07-06 23:23:46 +0000
commit9bcb9aae27c7ffe6a74521f951918739d87518ba (patch)
treeb9ad3c88816bfbd4d57c6c8b46f31b765727c245 /gcc/cp/rtti.c
parent2a43945fa59a5d450f24b2c47c35c8fef8f959a8 (diff)
downloadgcc-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.c4
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);
}