diff options
author | Andreas Jaeger <aj@suse.de> | 1999-12-09 23:24:58 +0000 |
---|---|---|
committer | Mark Mitchell <mmitchel@gcc.gnu.org> | 1999-12-09 23:24:58 +0000 |
commit | 225ff11985aa7ebb3b51b935e0afe6197ae7f54e (patch) | |
tree | 7666e8073374846ad957d143d2a777c87f1d31c7 /gcc/cp/semantics.c | |
parent | 3eb24f739e0576e8370a1aa540950ec9555e62b2 (diff) | |
download | gcc-225ff11985aa7ebb3b51b935e0afe6197ae7f54e.zip gcc-225ff11985aa7ebb3b51b935e0afe6197ae7f54e.tar.gz gcc-225ff11985aa7ebb3b51b935e0afe6197ae7f54e.tar.bz2 |
except.c (expand_throw): Add static attribute to match prototype.
* 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.
From-SVN: r30850
Diffstat (limited to 'gcc/cp/semantics.c')
-rw-r--r-- | gcc/cp/semantics.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/cp/semantics.c b/gcc/cp/semantics.c index ca0201d..c836888 100644 --- a/gcc/cp/semantics.c +++ b/gcc/cp/semantics.c @@ -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. */ |