diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-03-22 18:47:21 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-03-22 18:47:21 +0000 |
commit | 8b061e927f194a5743033f8724c4c4a9df103951 (patch) | |
tree | a1919ae640e41db8eb26635486dd337fe34e48e8 /gcc | |
parent | 53de4738d7adcb7426e40dc23dfe269763c14cdb (diff) | |
download | gcc-8b061e927f194a5743033f8724c4c4a9df103951.tar.gz |
* Make-lang.in (cp/except.o): Don't depend on insn-flags.h.
* except.c: Don't include it.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@40753 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-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 bdce0cea9ca..7eb92b2f097 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 20a6a5836ae..67789446278 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 fd99a931089..65de4580fb1 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++ |