diff options
author | Richard Henderson <rth@redhat.com> | 2001-03-22 10:47:21 -0800 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 2001-03-22 10:47:21 -0800 |
commit | 94c7f30b44e9f8e7a3fa433e65937c41cb334aae (patch) | |
tree | a1919ae640e41db8eb26635486dd337fe34e48e8 | |
parent | fd8b7a0ed9583626f2a3113fb46c0deaf2fc2bec (diff) | |
download | gcc-94c7f30b44e9f8e7a3fa433e65937c41cb334aae.zip gcc-94c7f30b44e9f8e7a3fa433e65937c41cb334aae.tar.gz gcc-94c7f30b44e9f8e7a3fa433e65937c41cb334aae.tar.bz2 |
Make-lang.in (cp/except.o): Don't depend on insn-flags.h.
* Make-lang.in (cp/except.o): Don't depend on insn-flags.h.
* except.c: Don't include it.
From-SVN: r40753
-rw-r--r-- | gcc/cp/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/cp/Make-lang.in | 2 | ||||
-rw-r--r-- | gcc/cp/except.c | 1 |
3 files changed, 6 insertions, 2 deletions
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index bdce0ce..7eb92b2 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,8 @@ +2001-03-22 Richard Henderson <rth@redhat.com> + + * Make-lang.in (cp/except.o): Don't depend on insn-flags.h. + * except.c: Don't include it. + 2001-03-22 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at> based on an idea from Joe Buck <jbuck@synopsys.com> diff --git a/gcc/cp/Make-lang.in b/gcc/cp/Make-lang.in index 20a6a58..6778944 100644 --- a/gcc/cp/Make-lang.in +++ b/gcc/cp/Make-lang.in @@ -284,7 +284,7 @@ cp/tree.o: cp/tree.c $(CXX_TREE_H) flags.h toplev.h $(GGC_H) $(RTL_H) \ cp/ptree.o: cp/ptree.c $(CXX_TREE_H) system.h cp/rtti.o: cp/rtti.c $(CXX_TREE_H) flags.h toplev.h cp/except.o: cp/except.c $(CXX_TREE_H) flags.h $(RTL_H) except.h toplev.h \ - cp/cfns.h $(EXPR_H) insn-flags.h cp/decl.h $(OBSTACK_H) + cp/cfns.h $(EXPR_H) cp/decl.h $(OBSTACK_H) cp/expr.o: cp/expr.c $(CXX_TREE_H) $(RTL_H) flags.h $(EXPR_H) toplev.h \ except.h $(TM_P_H) cp/xref.o: cp/xref.c $(CXX_TREE_H) input.h toplev.h diff --git a/gcc/cp/except.c b/gcc/cp/except.c index fd99a93..65de458 100644 --- a/gcc/cp/except.c +++ b/gcc/cp/except.c @@ -61,7 +61,6 @@ static tree expand_throw PARAMS ((tree)); static int decl_is_java_type PARAMS ((tree decl, int err)); #include "decl.h" -#include "insn-flags.h" #include "obstack.h" /* In a given translation unit we are constrained to catch only C++ |