diff options
author | Jeffrey A Law <law@cygnus.com> | 1998-03-29 11:54:09 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-03-29 04:54:09 -0700 |
commit | 234042f47128fa9b509b6046e05dba59ca95c1ce (patch) | |
tree | 57c3b1baf5eb327a271439dacf006e32a793a550 /gcc/stor-layout.c | |
parent | 72e1947054c20e786ce34ce916bdd61f488fe8b2 (diff) | |
download | gcc-234042f47128fa9b509b6046e05dba59ca95c1ce.tar.gz |
Makefile.in (c-typeck.o): Delete on expr.h, insn-codes.h and $(RTL_H).
* Makefile.in (c-typeck.o): Delete on expr.h, insn-codes.h and
$(RTL_H).
(stor-layout.o): Likewise.
* c-typeck.c: Include rtl.h and expr.h.
* stor-layout.c: Likewise.
From-SVN: r18894
Diffstat (limited to 'gcc/stor-layout.c')
-rw-r--r-- | gcc/stor-layout.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/stor-layout.c b/gcc/stor-layout.c index 3c940006bb0..3510a8ff151 100644 --- a/gcc/stor-layout.c +++ b/gcc/stor-layout.c @@ -26,6 +26,8 @@ Boston, MA 02111-1307, USA. */ #include "flags.h" #include "except.h" #include "function.h" +#include "rtl.h" +#include "expr.h" #define CEIL(x,y) (((x) + (y) - 1) / (y)) |