diff options
| author | grahams <grahams@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-01-08 10:18:40 +0000 |
|---|---|---|
| committer | grahams <grahams@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-01-08 10:18:40 +0000 |
| commit | 8a7257c41d303b6d51c1b7d2b3ee0bbe2e7625a6 (patch) | |
| tree | 1c33f4a6a97089ceca5921507826874d87bfe7ba | |
| parent | 31453c5a9f084ffdfcd44c0fcf3d141ae6e14af8 (diff) | |
| download | ppe42-gcc-8a7257c41d303b6d51c1b7d2b3ee0bbe2e7625a6.tar.gz ppe42-gcc-8a7257c41d303b6d51c1b7d2b3ee0bbe2e7625a6.zip | |
* class.c (VTT_TOP_LEVEL_P): Uppercase macro parameter and
whitespace.
(VTT_MARKED_BINFO_P): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@48635 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/cp/class.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/cp/class.c b/gcc/cp/class.c index 98325af3636..a1817e32809 100644 --- a/gcc/cp/class.c +++ b/gcc/cp/class.c @@ -1,6 +1,6 @@ /* Functions related to building classes and their related objects. Copyright (C) 1987, 1992, 1993, 1994, 1995, 1996, 1997, 1998, - 1999, 2000, 2001 Free Software Foundation, Inc. + 1999, 2000, 2001, 2002 Free Software Foundation, Inc. Contributed by Michael Tiemann (tiemann@cygnus.com) This file is part of GNU CC. @@ -218,8 +218,8 @@ static bool type_requires_array_cookie PARAMS ((tree)); /* Macros for dfs walking during vtt construction. See dfs_ctor_vtable_bases_queue_p, dfs_build_secondary_vptr_vtt_inits and dfs_fixup_binfo_vtbls. */ -#define VTT_TOP_LEVEL_P(node) TREE_UNSIGNED(node) -#define VTT_MARKED_BINFO_P(node) TREE_USED(node) +#define VTT_TOP_LEVEL_P(NODE) TREE_UNSIGNED (NODE) +#define VTT_MARKED_BINFO_P(NODE) TREE_USED (NODE) /* Variables shared between class.c and call.c. */ |

