diff options
Diffstat (limited to 'gcc/profile.c')
-rw-r--r-- | gcc/profile.c | 21 |
1 files changed, 17 insertions, 4 deletions
diff --git a/gcc/profile.c b/gcc/profile.c index 86a7094..a178a1b 100644 --- a/gcc/profile.c +++ b/gcc/profile.c @@ -55,7 +55,6 @@ along with GCC; see the file COPYING3. If not see #include "flags.h" #include "regs.h" #include "symtab.h" -#include "expr.h" #include "hashtab.h" #include "hash-set.h" #include "vec.h" @@ -63,6 +62,23 @@ along with GCC; see the file COPYING3. If not see #include "hard-reg-set.h" #include "input.h" #include "function.h" +#include "statistics.h" +#include "double-int.h" +#include "real.h" +#include "fixed-value.h" +#include "alias.h" +#include "wide-int.h" +#include "inchash.h" +#include "tree.h" +#include "insn-config.h" +#include "expmed.h" +#include "dojump.h" +#include "explow.h" +#include "calls.h" +#include "emit-rtl.h" +#include "varasm.h" +#include "stmt.h" +#include "expr.h" #include "predict.h" #include "dominance.h" #include "cfg.h" @@ -71,9 +87,6 @@ along with GCC; see the file COPYING3. If not see #include "diagnostic-core.h" #include "coverage.h" #include "value-prof.h" -#include "symtab.h" -#include "inchash.h" -#include "tree.h" #include "fold-const.h" #include "tree-ssa-alias.h" #include "internal-fn.h" |