From: Lee Iverson Date: Sat, 17 Jan 1998 20:37:23 +0000 (+0000) Subject: reorg.c: #include "expr.h" for rtx prototypes. X-Git-Tag: releases/libf2c-0.5.21~171 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=51549d766565888f6f62d93f5fc2691e06f35f35;p=thirdparty%2Fgcc.git 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 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ca6f4a379ce9..06df5a33ddb9 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +1998-01-17 Lee Iverson + + * 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 * Makefile.in (FLAGS_TO_PASS): Pass down gcc_include_dir and diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 528bcbd7d8b7..496c555aaeb8 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 631ef4beaf2f..059152cd1b46 100644 --- a/gcc/reorg.c +++ b/gcc/reorg.c @@ -118,6 +118,7 @@ Boston, MA 02111-1307, USA. */ #include "config.h" #include #include "rtl.h" +#include "expr.h" #include "insn-config.h" #include "conditions.h" #include "hard-reg-set.h"