diff options
Diffstat (limited to 'gcc/predict.c')
-rw-r--r-- | gcc/predict.c | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/gcc/predict.c b/gcc/predict.c index ec0c169..7ecaab3 100644 --- a/gcc/predict.c +++ b/gcc/predict.c @@ -36,22 +36,25 @@ along with GCC; see the file COPYING3. If not see #include "rtl.h" #include "tm_p.h" #include "hard-reg-set.h" -#include "basic-block.h" -#include "insn-config.h" -#include "regs.h" -#include "flags.h" +#include "predict.h" +#include "vec.h" #include "hashtab.h" #include "hash-set.h" -#include "vec.h" #include "machmode.h" #include "input.h" #include "function.h" +#include "dominance.h" +#include "cfg.h" +#include "cfganal.h" +#include "basic-block.h" +#include "insn-config.h" +#include "regs.h" +#include "flags.h" #include "profile.h" #include "except.h" #include "diagnostic-core.h" #include "recog.h" #include "expr.h" -#include "predict.h" #include "coverage.h" #include "sreal.h" #include "params.h" |