From: law Date: Sun, 29 Mar 1998 12:42:39 +0000 (+0000) Subject: * search.c: Put various prototypes inside #ifdef MI_MATRIX. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6af9ed12de26fe001c6c54c634832b3009397e56;p=platform%2Fupstream%2Flinaro-gcc.git * search.c: Put various prototypes inside #ifdef MI_MATRIX. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@18902 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 9b049e9..9913cac 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,5 +1,9 @@ Sun Mar 29 00:47:32 1998 Jeffrey A Law (law@cygnus.com) + * search.c: Put various prototypes inside #ifdef MI_MATRIX. + + * repo.c (save_string): Delete dead function. + * method.c (thunk_printable_name): Delete dead function. * lex.c (yynextch): Delete dead function. diff --git a/gcc/cp/search.c b/gcc/cp/search.c index a066845..2d16fc4 100644 --- a/gcc/cp/search.c +++ b/gcc/cp/search.c @@ -101,22 +101,26 @@ static void fixup_virtual_upcast_offsets tree *)); static int markedp PROTO((tree)); static int unmarkedp PROTO((tree)); +#ifdef MI_MATRIX static int numberedp PROTO((tree)); static int unnumberedp PROTO((tree)); +#endif static int marked_vtable_pathp PROTO((tree)); static int unmarked_vtable_pathp PROTO((tree)); static int marked_new_vtablep PROTO((tree)); static int unmarked_new_vtablep PROTO((tree)); static int dfs_debug_unmarkedp PROTO((tree)); +#ifdef MI_MATRIX static void dfs_number PROTO((tree)); static void dfs_unnumber PROTO((tree)); +static void dfs_record_inheritance PROTO((tree)); +#endif static void dfs_debug_mark PROTO((tree)); static void dfs_find_vbases PROTO((tree)); static void dfs_clear_vbase_slots PROTO((tree)); static void dfs_unmark PROTO((tree)); static void dfs_init_vbase_pointers PROTO((tree)); static void dfs_get_vbase_types PROTO((tree)); -static void dfs_record_inheritance PROTO((tree)); static void dfs_pushdecls PROTO((tree)); static void dfs_compress_decls PROTO((tree)); static void dfs_unuse_fields PROTO((tree));