diff options
| author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-06-01 10:13:19 +0000 |
|---|---|---|
| committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-06-01 10:13:19 +0000 |
| commit | 61be438d9ba75fe2fa906e6064dd2c7b735d3113 (patch) | |
| tree | 0e6837e98d6f854163fb55ff6693274b1c2c92e3 | |
| parent | 7555013e37c7adeab0c2b050b885347c771869ed (diff) | |
| download | ppe42-gcc-61be438d9ba75fe2fa906e6064dd2c7b735d3113.tar.gz ppe42-gcc-61be438d9ba75fe2fa906e6064dd2c7b735d3113.zip | |
* Makefile.in (c-decl.o): Depend on $(EXPR_H), not expr.h.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@34337 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 2 | ||||
| -rw-r--r-- | gcc/Makefile.in | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 1dee671b4b9..495ccf840da 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,7 @@ 2000-06-01 Richard Henderson <rth@cygnus.com> + * Makefile.in (c-decl.o): Depend on $(EXPR_H), not expr.h. + * c-decl.c (init_decl_processing): Set lang_get_alias_set first thing. 2000-05-31 Richard Henderson <rth@cygnus.com> diff --git a/gcc/Makefile.in b/gcc/Makefile.in index f131dabafbf..78a685925e7 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -1093,8 +1093,8 @@ $(srcdir)/c-gperf.h: c-parse.gperf $(SHELL) $(srcdir)/move-if-change tmp-gperf.h $(srcdir)/c-gperf.h c-decl.o : c-decl.c $(CONFIG_H) system.h $(TREE_H) $(RTL_H) c-tree.h \ - c-common.h $(GGC_H) c-lex.h flags.h function.h output.h expr.h toplev.h \ - defaults.h + c-common.h $(GGC_H) c-lex.h flags.h function.h output.h $(EXPR_H) \ + toplev.h defaults.h c-typeck.o : c-typeck.c $(CONFIG_H) system.h $(TREE_H) c-tree.h c-common.h \ flags.h intl.h output.h $(EXPR_H) $(RTL_H) toplev.h c-lang.o : c-lang.c $(CONFIG_H) system.h $(TREE_H) c-tree.h c-common.h \ |

