diff options
Diffstat (limited to 'gcc/tree-profile.c')
-rw-r--r-- | gcc/tree-profile.c | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/gcc/tree-profile.c b/gcc/tree-profile.c index 54bc644..ce17f05 100644 --- a/gcc/tree-profile.c +++ b/gcc/tree-profile.c @@ -28,14 +28,16 @@ along with GCC; see the file COPYING3. If not see #include "system.h" #include "coretypes.h" #include "backend.h" -#include "cfghooks.h" +#include "target.h" #include "tree.h" #include "gimple.h" -#include "hard-reg-set.h" +#include "cfghooks.h" +#include "tree-pass.h" #include "ssa.h" -#include "flags.h" -#include "diagnostic-core.h" +#include "cgraph.h" #include "coverage.h" +#include "diagnostic-core.h" +#include "flags.h" #include "alias.h" #include "fold-const.h" #include "internal-fn.h" @@ -44,15 +46,11 @@ along with GCC; see the file COPYING3. If not see #include "gimplify.h" #include "gimple-iterator.h" #include "gimplify-me.h" -#include "cgraph.h" #include "tree-cfg.h" #include "tree-into-ssa.h" -#include "tree-pass.h" #include "value-prof.h" #include "profile.h" -#include "target.h" #include "tree-cfgcleanup.h" -#include "tree-nested.h" #include "params.h" static GTY(()) tree gcov_type_node; |