diff options
Diffstat (limited to 'gcc/store-motion.c')
-rw-r--r-- | gcc/store-motion.c | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/gcc/store-motion.c b/gcc/store-motion.c index 7d7c961600f..3677fbb46d6 100644 --- a/gcc/store-motion.c +++ b/gcc/store-motion.c @@ -32,13 +32,20 @@ along with GCC; see the file COPYING3. If not see #include "flags.h" #include "insn-config.h" #include "recog.h" -#include "basic-block.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 "cfgrtl.h" +#include "cfganal.h" +#include "lcm.h" +#include "cfgcleanup.h" +#include "basic-block.h" #include "expr.h" #include "except.h" #include "ggc.h" |