diff options
author | Jeff Law <law@gcc.gnu.org> | 1999-09-23 07:07:39 -0600 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1999-09-23 07:07:39 -0600 |
commit | 8b0212ca2a52a22c6e81133dfca16be7985917c6 (patch) | |
tree | ec5abe1872bd6059f23f59b6abdced5aac36a269 /gcc | |
parent | aa388f29a30a2fa98275479ee44b9448786f62ed (diff) | |
download | gcc-8b0212ca2a52a22c6e81133dfca16be7985917c6.zip gcc-8b0212ca2a52a22c6e81133dfca16be7985917c6.tar.gz gcc-8b0212ca2a52a22c6e81133dfca16be7985917c6.tar.bz2 |
regclass.c: Include ggc.h.
* regclass.c: Include ggc.h.
* Makefile.in (regclass.o): Add ggc.h to dependency list.
From-SVN: r29615
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/Makefile.in | 2 | ||||
-rw-r--r-- | gcc/regclass.c | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 964c56a..894db0c 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -1554,7 +1554,7 @@ combine.o : combine.c $(CONFIG_H) system.h $(RTL_H) flags.h function.h \ $(BASIC_BLOCK_H) $(RECOG_H) real.h hard-reg-set.h toplev.h regclass.o : regclass.c $(CONFIG_H) system.h $(RTL_H) hard-reg-set.h flags.h \ $(BASIC_BLOCK_H) $(REGS_H) insn-config.h $(RECOG_H) reload.h real.h \ - toplev.h function.h output.h + toplev.h function.h output.h ggc.h local-alloc.o : local-alloc.c $(CONFIG_H) system.h $(RTL_H) flags.h \ $(BASIC_BLOCK_H) $(REGS_H) hard-reg-set.h insn-config.h $(RECOG_H) \ output.h function.h insn-attr.h toplev.h diff --git a/gcc/regclass.c b/gcc/regclass.c index a3672c4..8f0829c 100644 --- a/gcc/regclass.c +++ b/gcc/regclass.c @@ -38,6 +38,7 @@ Boston, MA 02111-1307, USA. */ #include "real.h" #include "toplev.h" #include "output.h" +#include "ggc.h" #ifndef REGISTER_MOVE_COST #define REGISTER_MOVE_COST(x, y) 2 |