diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-03-29 11:54:09 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-03-29 11:54:09 +0000 |
commit | c091e5a413b93df16c61e2ef98c68c10f55a7c24 (patch) | |
tree | 57c3b1baf5eb327a271439dacf006e32a793a550 /gcc/stor-layout.c | |
parent | ba513e8f7e1dfa6de4dc1751fbe52cd90cc010cf (diff) | |
download | gcc-c091e5a413b93df16c61e2ef98c68c10f55a7c24.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@18894 138bc75d-0d04-0410-961f-82ee72b054a4
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)) |