diff options
author | Rainer Orth <ro@TechFak.Uni-Bielefeld.DE> | 2003-09-23 22:33:30 +0000 |
---|---|---|
committer | Rainer Orth <ro@gcc.gnu.org> | 2003-09-23 22:33:30 +0000 |
commit | d84a4ef1dd14d8d7b670a0758d302874c2dc0f1d (patch) | |
tree | 661328f41128305fb040f5e63b065b246a9a3381 /gcc | |
parent | 92b836fa739387acacdac92f0ab82e6ff67786de (diff) | |
download | gcc-d84a4ef1dd14d8d7b670a0758d302874c2dc0f1d.tar.gz |
targhooks.c: Include output.h.
* targhooks.c: Include output.h.
* Makefile.in (targhooks.o): Add output.h to dependency list.
From-SVN: r71702
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/Makefile.in | 3 | ||||
-rw-r--r-- | gcc/targhooks.c | 1 |
3 files changed, 8 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 2300ba8363c..4d91c48df6f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,10 @@ 2003-09-23 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE> + * targhooks.c: Include output.h. + * Makefile.in (targhooks.o): Add output.h to dependency list. + +2003-09-23 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE> + * config.host: Removed superfluous newline. 2003-09-23 Nathanael Nerode <neroden@gcc.gnu.org> diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 768646ca26d..b73ba25887f 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -1489,7 +1489,8 @@ opts.o : opts.c opts.h options.h toplev.h $(CONFIG_H) $(SYSTEM_H) \ coretypes.h $(TREE_H) $(TM_H) $(LANGHOOKS_H) $(GGC_H) $(RTL_H) \ output.h $(DIAGNOSTIC_H) $(TM_P_H) $(INSN_ATTR_H) intl.h targhooks.o : targhooks.c targhooks.h $(CONFIG_H) $(SYSTEM_H) \ - coretypes.h $(TREE_H) $(TM_H) $(RTL_H) $(TM_P_H) function.h toplev.h + coretypes.h $(TREE_H) $(TM_H) $(RTL_H) $(TM_P_H) function.h \ + output.h toplev.h toplev.o : toplev.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) $(RTL_H) \ function.h flags.h xcoffout.h input.h $(INSN_ATTR_H) output.h $(DIAGNOSTIC_H) \ diff --git a/gcc/targhooks.c b/gcc/targhooks.c index b1955690818..5597635a0ab 100644 --- a/gcc/targhooks.c +++ b/gcc/targhooks.c @@ -55,6 +55,7 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA #include "rtl.h" #include "tree.h" #include "expr.h" +#include "output.h" #include "toplev.h" #include "function.h" #include "target.h" |