Makefile.in (call.o): Depend on $(EXPR_H).

* Makefile.in (call.o): Depend on $(EXPR_H).

	* call.c: Include "expr.h".

	* class.c (dump_class_hierarchy): Add prototype.

	* search.c (dfs_get_pure_virtuals): Likewise.

From-SVN: r31811
This commit is contained in:
Kaveh R. Ghazi 2000-02-06 04:27:53 +00:00 committed by Kaveh Ghazi
parent c69916605c
commit 70a51bdac1
5 changed files with 14 additions and 1 deletions

View File

@ -1,3 +1,13 @@
2000-02-05 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* Makefile.in (call.o): Depend on $(EXPR_H).
* call.c: Include "expr.h".
* class.c (dump_class_hierarchy): Add prototype.
* search.c (dfs_get_pure_virtuals): Likewise.
2000-02-1 Ulrich Drepper <drepper@redhat.com>
* parse.y (simple_stmt): Allow :: token in asm parameter list.

View File

@ -262,7 +262,7 @@ typeck.o : typeck.c $(CXX_TREE_H) $(srcdir)/../flags.h $(RTL_H) \
class.o : class.c $(CXX_TREE_H) $(srcdir)/../flags.h \
$(srcdir)/../toplev.h $(RTL_H)
call.o : call.c $(CXX_TREE_H) $(srcdir)/../flags.h \
$(srcdir)/../toplev.h $(RTL_H)
$(srcdir)/../toplev.h $(RTL_H) $(EXPR_H)
friend.o : friend.c $(CXX_TREE_H) $(srcdir)/../flags.h $(RTL_H) \
$(srcdir)/../toplev.h
init.o : init.c $(CXX_TREE_H) $(srcdir)/../flags.h $(RTL_H) \

View File

@ -32,6 +32,7 @@ Boston, MA 02111-1307, USA. */
#include "rtl.h"
#include "toplev.h"
#include "defaults.h"
#include "expr.h"
#include "obstack.h"
#define obstack_chunk_alloc xmalloc

View File

@ -150,6 +150,7 @@ static tree dfs_find_final_overrider PARAMS ((tree, void *));
static tree find_final_overrider PARAMS ((tree, tree, tree));
static tree dfs_find_base PARAMS ((tree, void *));
static int make_new_vtable PARAMS ((tree, tree));
extern void dump_class_hierarchy PARAMS ((tree, int));
/* Variables shared between class.c and call.c. */

View File

@ -147,6 +147,7 @@ static void fixup_all_virtual_upcast_offsets PARAMS ((tree, tree));
static tree dfs_mark_primary_bases PARAMS ((tree, void *));
static tree get_shared_vbase_if_not_primary PARAMS ((tree, void *));
static tree dfs_find_vbase_instance PARAMS ((tree, void *));
static tree dfs_get_pure_virtuals PARAMS ((tree, void *));
/* Allocate a level of searching. */