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 | |
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')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/ggc-callbacks.c | 1 | ||||
-rw-r--r-- | gcc/ggc-common.c | 5 | ||||
-rw-r--r-- | gcc/ggc-none.c | 1 | ||||
-rw-r--r-- | gcc/ggc-page.c | 1 | ||||
-rw-r--r-- | gcc/ggc-simple.c | 3 |
6 files changed, 14 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 5f257ccf..1120c15 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +Tue Oct 5 11:34:52 1999 Michael Meissner <meissner@cygnus.com> + + * ggc-{common,callbacks,none,page,simple}.c (toplevel): Reorder + includes, so that ggc.h comes after other includes that define the + appropriate types. Include tm_p.h for getting user prototypes. + Mon Oct 4 16:48:16 1999 Diego Novillo <dnovillo@cygnus.com> Jonathan Larmour <jlarmour@cygnus.co.uk> diff --git a/gcc/ggc-callbacks.c b/gcc/ggc-callbacks.c index caae2bc..462e690 100644 --- a/gcc/ggc-callbacks.c +++ b/gcc/ggc-callbacks.c @@ -22,6 +22,7 @@ #include "system.h" #include "rtl.h" #include "tree.h" +#include "tm_p.h" #include "ggc.h" int ggc_p = 0; 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 *)); diff --git a/gcc/ggc-none.c b/gcc/ggc-none.c index d567c8b..4e9ef4a 100644 --- a/gcc/ggc-none.c +++ b/gcc/ggc-none.c @@ -29,6 +29,7 @@ #include "config.h" #include "system.h" #include "rtl.h" +#include "tm_p.h" #include "ggc.h" /* For now, keep using the old obstack scheme in the gen* programs. */ diff --git a/gcc/ggc-page.c b/gcc/ggc-page.c index 879f8fa..80967d2 100644 --- a/gcc/ggc-page.c +++ b/gcc/ggc-page.c @@ -22,6 +22,7 @@ #include "system.h" #include "tree.h" #include "rtl.h" +#include "tm_p.h" #include "varray.h" #include "flags.h" #include "ggc.h" diff --git a/gcc/ggc-simple.c b/gcc/ggc-simple.c index cb9364b..841f50b 100644 --- a/gcc/ggc-simple.c +++ b/gcc/ggc-simple.c @@ -22,10 +22,11 @@ #include "system.h" #include "rtl.h" #include "tree.h" -#include "ggc.h" +#include "tm_p.h" #include "flags.h" #include "varray.h" #include "hash.h" +#include "ggc.h" /* Debugging flags. */ |