diff options
author | Michael Meissner <meissner@cygnus.com> | 1999-10-05 15:42:18 +0000 |
---|---|---|
committer | Michael Meissner <meissner@gcc.gnu.org> | 1999-10-05 15:42:18 +0000 |
commit | 1b42a6a905d4647e1328d8cf6c18c2ef9d2c72f1 (patch) | |
tree | 6e3b7496b58742346d6a7061c20341f16d285152 /gcc/ggc-common.c | |
parent | b81fdb5a14398ef5f9a1a2e7a1d93ac6878854b4 (diff) | |
download | gcc-1b42a6a905d4647e1328d8cf6c18c2ef9d2c72f1.zip gcc-1b42a6a905d4647e1328d8cf6c18c2ef9d2c72f1.tar.gz gcc-1b42a6a905d4647e1328d8cf6c18c2ef9d2c72f1.tar.bz2 |
Include tm_p.h in ggc files
From-SVN: r29825
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 cf28d5b..5acde49 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 *)); |