diff options
author | Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org> | 2015-01-12 10:48:07 +0000 |
---|---|---|
committer | Prathamesh Kulkarni <prathamesh3492@gcc.gnu.org> | 2015-01-12 10:48:07 +0000 |
commit | c3aeec0aaa0969087172adb5d30db47597063c21 (patch) | |
tree | 554686dfc3af6875b683f0c93fba40c4c68a6d4a /gcc | |
parent | 365536ca8d8af9d8b25a41217626df5794049676 (diff) | |
download | gcc-c3aeec0aaa0969087172adb5d30db47597063c21.zip gcc-c3aeec0aaa0969087172adb5d30db47597063c21.tar.gz gcc-c3aeec0aaa0969087172adb5d30db47597063c21.tar.bz2 |
ggcplug.c: Include gcc-plugin.h after coretypes.h.
2015-01-12 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
testsuite/
* gcc.dg/plugin/ggcplug.c: Include gcc-plugin.h after coretypes.h.
From-SVN: r219458
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/ChangeLog | 3 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/plugin/ggcplug.c | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 7e3489b..60da43c 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,6 @@ +2015-01-12 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org> + * gcc.dg/plugin/ggcplug.c: Include gcc-plugin.h after coretypes.h. + 2015-01-12 Martin Liska <mliska@suse.cz> * gcc.dg/ipa/PR64550.c: New test. diff --git a/gcc/testsuite/gcc.dg/plugin/ggcplug.c b/gcc/testsuite/gcc.dg/plugin/ggcplug.c index 3947384..c4bc334 100644 --- a/gcc/testsuite/gcc.dg/plugin/ggcplug.c +++ b/gcc/testsuite/gcc.dg/plugin/ggcplug.c @@ -4,9 +4,9 @@ #include "config.h" #include "system.h" #include "coretypes.h" +#include "gcc-plugin.h" #include "tm.h" #include "tree.h" -#include "gcc-plugin.h" #include "toplev.h" #include "basic-block.h" #include "hash-table.h" |