diff options
author | Lee Iverson <leei@Canada.AI.SRI.COM> | 1998-01-17 20:37:23 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-01-17 13:37:23 -0700 |
commit | 51549d766565888f6f62d93f5fc2691e06f35f35 (patch) | |
tree | c2e886d93e114975bb591040eb1504246efc4c59 /gcc | |
parent | 3bf810d837ba3d6d10c315c55255ead71a4e5a5d (diff) | |
download | gcc-51549d766565888f6f62d93f5fc2691e06f35f35.zip gcc-51549d766565888f6f62d93f5fc2691e06f35f35.tar.gz gcc-51549d766565888f6f62d93f5fc2691e06f35f35.tar.bz2 |
reorg.c: #include "expr.h" for rtx prototypes.
* reorg.c: #include "expr.h" for rtx prototypes.
* Makefile.in (reorg.o): Depend on expr.h.
From-SVN: r17393
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/Makefile.in | 2 | ||||
-rw-r--r-- | gcc/reorg.c | 1 |
3 files changed, 7 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ca6f4a3..06df5a3 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +1998-01-17 Lee Iverson <leei@Canada.AI.SRI.COM> + + * reorg.c: #include "expr.h" for rtx prototypes. + * Makefile.in (reorg.o): Depend on expr.h + Sat Jan 17 21:28:08 1998 Pieter Nagel <pnagel@epiuse.co.za> * Makefile.in (FLAGS_TO_PASS): Pass down gcc_include_dir and diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 528bcbd..496c555 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -1417,7 +1417,7 @@ caller-save.o : caller-save.c $(CONFIG_H) $(RTL_H) flags.h \ reload.h expr.h reorg.o : reorg.c $(CONFIG_H) $(RTL_H) conditions.h hard-reg-set.h \ $(BASIC_BLOCK_H) regs.h insn-config.h insn-attr.h insn-flags.h $(RECOG_H) \ - flags.h output.h + flags.h output.h expr.h alias.o : alias.c $(CONFIG_H) $(RTL_H) flags.h hard-reg-set.h regs.h \ insn-codes.h regmove.o : regmove.c $(CONFIG_H) $(RTL_H) insn-config.h recog.h output.h \ diff --git a/gcc/reorg.c b/gcc/reorg.c index 631ef4b..059152c 100644 --- a/gcc/reorg.c +++ b/gcc/reorg.c @@ -118,6 +118,7 @@ Boston, MA 02111-1307, USA. */ #include "config.h" #include <stdio.h> #include "rtl.h" +#include "expr.h" #include "insn-config.h" #include "conditions.h" #include "hard-reg-set.h" |