diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2001-01-28 01:50:22 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2001-01-28 01:50:22 +0000 |
commit | c913b6f18e999e16f5f127c2f9a839e610ff9e18 (patch) | |
tree | 866b79fe6150d355b001295b087bc926490827b7 /gcc/java | |
parent | 75c1416b920eeac948d4462ddc0ace03773c9ab9 (diff) | |
download | gcc-c913b6f18e999e16f5f127c2f9a839e610ff9e18.zip gcc-c913b6f18e999e16f5f127c2f9a839e610ff9e18.tar.gz gcc-c913b6f18e999e16f5f127c2f9a839e610ff9e18.tar.bz2 |
configure.in: Arrange to include defaults.h in [ht]config.h/tm.h.
* configure.in: Arrange to include defaults.h in [ht]config.h/tm.h.
* Makefile.in: Remove all dependencies on defaults.h.
* builtins.c: Don't include defaults.h.
* c-common.c: Likewise.
* c-decl.c: Likewise.
* c-pragma.c: Likewise.
* c-typeck.c: Likewise.
* combine.c: Likewise.
* i386.c: Likewise.
* frame-ia64.c: Likewise.
* cppexp.c: Likewise.
* crtstuff.c: Likewise.
* dbxout.c: Likewise.
* dwarf2out.c: Likewise.
* dwarfout.c: Likewise.
* emit-rtl.c: Likewise.
* except.c: Likewise.
* expr.c: Likewise.
* final.c: Likewise.
* frame-dwarf2.c: Likewise.
* libgcc2.c: Likewise.
* optabs.c: Likewise.
* profile.c: Likewise.
* sdbout.c: Likewise.
* toplev.c: Likewise.
* tradcif.y: Likewise.
* tree.c: Likewise.
* varasm.c: Likewise.
ch:
* Makefile.in: Remove all dependencies on defaults.h.
* decl.c: Don't include defaults.h.
* timing.c: Likewise.
cp:
* Make-lang.in: Remove all dependencies on defaults.h.
* call.c: Don't include defaults.h.
* decl.c: Likewise.
* decl2.c: Likewise.
* except.c: Likewise.
* pt.c: Likewise.
* rtti.c: Likewise.
* tree.c: Likewise.
* typeck.c: Likewise.
f:
* Make-lang.in: Remove all dependencies on defaults.h.
* com.c: Don't include defaults.h.
java:
* Make-lang.in: Remove all dependencies on defaults.h.
* decl.c: Don't include defaults.h.
* expr.c: Likewise.
* parse.y: Likewise.
From-SVN: r39308
Diffstat (limited to 'gcc/java')
-rw-r--r-- | gcc/java/ChangeLog | 7 | ||||
-rw-r--r-- | gcc/java/Make-lang.in | 2 | ||||
-rw-r--r-- | gcc/java/decl.c | 1 | ||||
-rw-r--r-- | gcc/java/expr.c | 1 | ||||
-rw-r--r-- | gcc/java/parse.y | 1 |
5 files changed, 8 insertions, 4 deletions
diff --git a/gcc/java/ChangeLog b/gcc/java/ChangeLog index 0f279e6..5a60bf9 100644 --- a/gcc/java/ChangeLog +++ b/gcc/java/ChangeLog @@ -1,3 +1,10 @@ +2001-01-27 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> + + * Make-lang.in: Remove all dependencies on defaults.h. + * decl.c: Don't include defaults.h. + * expr.c: Likewise. + * parse.y: Likewise. + 2001-01-25 Alexandre Petit-Bianco <apbianco@cygnus.com> * ChangeLog (2001-01-21): Fixed typo. diff --git a/gcc/java/Make-lang.in b/gcc/java/Make-lang.in index c16fc84..4c57d9f 100644 --- a/gcc/java/Make-lang.in +++ b/gcc/java/Make-lang.in @@ -248,7 +248,7 @@ java/class.o: java/class.c $(CONFIG_H) $(JAVA_TREE_H) $(RTL_H) java/jcf.h \ java/constants.o: java/constants.c $(CONFIG_H) $(JAVA_TREE_H) java/jcf.h \ toplev.h system.h $(GGC_H) java/decl.o: java/decl.c $(CONFIG_H) $(JAVA_TREE_H) java/jcf.h \ - toplev.h system.h function.h defaults.h gcc.h + toplev.h system.h function.h gcc.h java/except.o: java/except.c $(CONFIG_H) $(JAVA_TREE_H) java/jcf.h real.h \ $(RTL_H) java/javaop.h java/java-opcodes.h except.h java/java-except.h \ eh-common.h toplev.h system.h function.h diff --git a/gcc/java/decl.c b/gcc/java/decl.c index ae5339c..b11ea6c 100644 --- a/gcc/java/decl.c +++ b/gcc/java/decl.c @@ -35,7 +35,6 @@ The Free Software Foundation is independent of Sun Microsystems, Inc. */ #include "toplev.h" #include "function.h" #include "except.h" -#include "defaults.h" #include "java-except.h" #include "ggc.h" diff --git a/gcc/java/expr.c b/gcc/java/expr.c index f42cc45..beb3137 100644 --- a/gcc/java/expr.c +++ b/gcc/java/expr.c @@ -39,7 +39,6 @@ The Free Software Foundation is independent of Sun Microsystems, Inc. */ #include "parse.h" #include "toplev.h" #include "except.h" -#include "defaults.h" #include "ggc.h" static void flush_quick_stack PARAMS ((void)); diff --git a/gcc/java/parse.y b/gcc/java/parse.y index 491dfb4..cf438e9 100644 --- a/gcc/java/parse.y +++ b/gcc/java/parse.y @@ -64,7 +64,6 @@ definitions and other extensions. */ #include "xref.h" #include "function.h" #include "except.h" -#include "defaults.h" #include "ggc.h" #ifndef DIR_SEPARATOR |