Makefile.in (call.o): Depend on $(EXPR_H).
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>
Sun, 6 Feb 2000 04:27:53 +0000 (04:27 +0000)
committerKaveh Ghazi <ghazi@gcc.gnu.org>
Sun, 6 Feb 2000 04:27:53 +0000 (04:27 +0000)
* 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

gcc/cp/ChangeLog
gcc/cp/Makefile.in
gcc/cp/call.c
gcc/cp/class.c
gcc/cp/search.c

index 8778cc2..7192d7d 100644 (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.
index d845c3e..a72e7b3 100644 (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) \
index da320b4..241c0ec 100644 (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
index 2d45510..4351de5 100644 (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.  */
 
index a293142..87e8f3e 100644 (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.  */