diff options
author | meissner <meissner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-10-05 15:42:18 +0000 |
---|---|---|
committer | meissner <meissner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-10-05 15:42:18 +0000 |
commit | f8e15e8ada21fa071f82a53293004e7d7e72f054 (patch) | |
tree | 6e3b7496b58742346d6a7061c20341f16d285152 /gcc/ggc-common.c | |
parent | 81d1edd3bd6ee2a1d707757f918f14ebe64b3656 (diff) | |
download | gcc-f8e15e8ada21fa071f82a53293004e7d7e72f054.tar.gz |
Include tm_p.h in ggc files
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@29825 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ggc-common.c')
-rw-r--r-- | gcc/ggc-common.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gcc/ggc-common.c b/gcc/ggc-common.c index cf28d5bbc0c..5acde492d17 100644 --- a/gcc/ggc-common.c +++ b/gcc/ggc-common.c @@ -23,11 +23,12 @@ #include "config.h" #include "system.h" -#include "ggc.h" -#include "hash.h" #include "rtl.h" #include "tree.h" +#include "tm_p.h" +#include "hash.h" #include "varray.h" +#include "ggc.h" static void ggc_mark_rtx_ptr PARAMS ((void *)); static void ggc_mark_tree_ptr PARAMS ((void *)); |