From d6553b54e8ed954a4b8d58c7bbc18451e4fbc320 Mon Sep 17 00:00:00 2001 From: Franz Sirl Date: Sun, 29 Jun 2003 01:17:54 +0000 Subject: [PATCH] opts.c: Include insn-attr.h. 2003-06-29 Franz Sirl * opts.c: Include insn-attr.h. * Makefile.in (opts.o): Depend on INSN_ATTR_H. From-SVN: r68657 --- gcc/ChangeLog | 5 +++++ gcc/Makefile.in | 2 +- gcc/opts.c | 1 + 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 8328b3ff8f3c..cafafb20c412 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2003-06-29 Franz Sirl + + * opts.c: Include insn-attr.h. + * Makefile.in (opts.o): Depend on INSN_ATTR_H. + 2003-06-27 J"orn Rennecke * flow.c (propagate_one_insn): Use proper test for a register diff --git a/gcc/Makefile.in b/gcc/Makefile.in index a558ffb96bc4..32426965faf4 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -1483,7 +1483,7 @@ diagnostic.o : diagnostic.c diagnostic.h real.h diagnostic.def \ input.h toplev.h intl.h langhooks.h $(LANGHOOKS_DEF_H) 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) + output.h diagnostic.h $(TM_P_H) $(INSN_ATTR_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 \ debug.h insn-config.h intl.h $(RECOG_H) Makefile toplev.h \ diff --git a/gcc/opts.c b/gcc/opts.c index af9a896b0652..a150c3afa916 100644 --- a/gcc/opts.c +++ b/gcc/opts.c @@ -35,6 +35,7 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA #include "params.h" #include "diagnostic.h" #include "tm_p.h" /* For OPTIMIZATION_OPTIONS. */ +#include "insn-attr.h" /* For INSN_SCHEDULING. */ /* Value of the -G xx switch, and whether it was passed or not. */ unsigned HOST_WIDE_INT g_switch_value;