OSDN Git Service

* except.c (expand_throw): Add static attribute to match
authormmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 9 Dec 1999 23:24:58 +0000 (23:24 +0000)
committermmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 9 Dec 1999 23:24:58 +0000 (23:24 +0000)
prototype.

* Makefile.in (semantics.o): Add dependency on output.h.
* semantics.c: Include output.h for declaration of
make_function_rtl.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@30850 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/cp/ChangeLog
gcc/cp/Makefile.in
gcc/cp/except.c
gcc/cp/semantics.c

index b6505e5..bde1126 100644 (file)
@@ -1,4 +1,13 @@
-1999-12-09  Mark Mitchell  <mark@codesourcery.com>
+11999-12-09  Andreas Jaeger  <aj@suse.de>
+
+       * except.c (expand_throw): Add static attribute to match
+       prototype.
+
+       * Makefile.in (semantics.o): Add dependency on output.h.
+       * semantics.c: Include output.h for declaration of
+       make_function_rtl.
+
+999-12-09  Mark Mitchell  <mark@codesourcery.com>
 
        * decl.c (init_decl_processing): Reenable inlining on trees.
        (finish_function): Likewise.
index d0a1397..d845c3e 100644 (file)
@@ -297,7 +297,8 @@ repo.o : repo.c $(CXX_TREE_H) \
   $(srcdir)/../toplev.h $(srcdir)/../ggc.h
 semantics.o: semantics.c $(CXX_TREE_H) lex.h \
   $(srcdir)/../except.h $(srcdir)/../toplev.h \
-  $(srcdir)/../flags.h $(srcdir)/../ggc.h $(RTL_H)
+  $(srcdir)/../flags.h $(srcdir)/../ggc.h \
+  $(srcdir)/../output.h $(RTL_H) 
 dump.o: dump.c $(CXX_TREE_H)
 optimize.o: optimize.c $(CXX_TREE_H) \
   $(srcdir)/../rtl.h $(srcdir)/../integrate.h ../insn-config.h
index 62cae27..48eb4fd 100644 (file)
@@ -766,7 +766,7 @@ alloc_eh_object (type)
                generate a label for the throw block
        4. jump to the throw block label.  */
 
-tree
+static tree
 expand_throw (exp)
      tree exp;
 {
index ca0201d..c836888 100644 (file)
@@ -34,6 +34,7 @@
 #include "flags.h"
 #include "ggc.h"
 #include "rtl.h"
+#include "output.h"
 
 /* There routines provide a modular interface to perform many parsing
    operations.  They may therefore be used during actual parsing, or
@@ -46,6 +47,7 @@
 
 static tree expand_cond PROTO((tree));
 static tree maybe_convert_cond PROTO((tree));
+static tree simplify_aggr_init_exprs_r PROTO((tree *, int *, void *));
 
 /* Record the fact that STMT was the last statement added to the
    statement tree.  */