diff options
author | Nathanael Nerode <neroden@gcc.gnu.org> | 2003-06-13 14:30:19 +0000 |
---|---|---|
committer | Nathanael Nerode <neroden@gcc.gnu.org> | 2003-06-13 14:30:19 +0000 |
commit | cec57f7231040e0bd2d4fdce26d78592574abc21 (patch) | |
tree | a74ef07b6b8ad128262159229964f8ef9f01cd46 | |
parent | 3af0187c28292970aeed9617981cc342f0b671f9 (diff) | |
download | gcc-cec57f7231040e0bd2d4fdce26d78592574abc21.zip gcc-cec57f7231040e0bd2d4fdce26d78592574abc21.tar.gz gcc-cec57f7231040e0bd2d4fdce26d78592574abc21.tar.bz2 |
* rtti.c: Remove PARAMS.
From-SVN: r67898
-rw-r--r-- | gcc/cp/ChangeLog | 2 | ||||
-rw-r--r-- | gcc/cp/rtti.c | 42 |
2 files changed, 23 insertions, 21 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index f4b4f2e..d2a8dcc 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,5 +1,7 @@ 2003-06-13 Nathanael Nerode <neroden@gcc.gnu.org> + * rtti.c: Remove PARAMS. + * typeck2.c: Convert to ISO C. 2003-06-12 Mark Mitchell <mark@codesourcery.com> diff --git a/gcc/cp/rtti.c b/gcc/cp/rtti.c index 9300363..ac117fa 100644 --- a/gcc/cp/rtti.c +++ b/gcc/cp/rtti.c @@ -76,31 +76,31 @@ Boston, MA 02111-1307, USA. */ /* A varray of all tinfo decls that haven't yet been emitted. */ varray_type unemitted_tinfo_decls; -static tree build_headof PARAMS((tree)); -static tree ifnonnull PARAMS((tree, tree)); -static tree tinfo_name PARAMS((tree)); -static tree build_dynamic_cast_1 PARAMS((tree, tree)); -static tree throw_bad_cast PARAMS((void)); -static tree throw_bad_typeid PARAMS((void)); -static tree get_tinfo_decl_dynamic PARAMS((tree)); -static tree get_tinfo_ptr PARAMS((tree)); -static bool typeid_ok_p PARAMS((void)); -static int qualifier_flags PARAMS((tree)); +static tree build_headof (tree); +static tree ifnonnull (tree, tree); +static tree tinfo_name (tree); +static tree build_dynamic_cast_1 (tree, tree); +static tree throw_bad_cast (void); +static tree throw_bad_typeid (void); +static tree get_tinfo_decl_dynamic (tree); +static tree get_tinfo_ptr (tree); +static bool typeid_ok_p (void); +static int qualifier_flags (tree); static bool target_incomplete_p (tree); -static tree tinfo_base_init PARAMS((tree, tree)); -static tree generic_initializer PARAMS((tree, tree)); +static tree tinfo_base_init (tree, tree); +static tree generic_initializer (tree, tree); static tree ptr_initializer (tree, tree, bool *); static tree ptm_initializer (tree, tree, bool *); -static tree dfs_class_hint_mark PARAMS ((tree, void *)); -static tree dfs_class_hint_unmark PARAMS ((tree, void *)); -static int class_hint_flags PARAMS((tree)); -static tree class_initializer PARAMS((tree, tree, tree)); -static tree create_pseudo_type_info PARAMS((const char *, int, ...)); -static tree get_pseudo_ti_init PARAMS ((tree, tree, bool *)); -static tree get_pseudo_ti_desc PARAMS((tree)); -static void create_tinfo_types PARAMS((void)); +static tree dfs_class_hint_mark (tree, void *); +static tree dfs_class_hint_unmark (tree, void *); +static int class_hint_flags (tree); +static tree class_initializer (tree, tree, tree); +static tree create_pseudo_type_info (const char *, int, ...); +static tree get_pseudo_ti_init (tree, tree, bool *); +static tree get_pseudo_ti_desc (tree); +static void create_tinfo_types (void); static bool typeinfo_in_lib_p (tree); -static bool unemitted_tinfo_decl_p PARAMS((tree)); +static bool unemitted_tinfo_decl_p (tree); static int doing_runtime = 0; |