diff options
Diffstat (limited to 'gcc/gcse.c')
-rw-r--r-- | gcc/gcse.c | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/gcc/gcse.c b/gcc/gcse.c index 01fafb175e2..0f046415668 100644 --- a/gcc/gcse.c +++ b/gcc/gcse.c @@ -138,9 +138,17 @@ along with GCC; see the file COPYING3. If not see #include "tm.h" #include "diagnostic-core.h" #include "toplev.h" - #include "hard-reg-set.h" #include "rtl.h" +#include "hash-set.h" +#include "machmode.h" +#include "vec.h" +#include "double-int.h" +#include "input.h" +#include "alias.h" +#include "symtab.h" +#include "wide-int.h" +#include "inchash.h" #include "tree.h" #include "tm_p.h" #include "regs.h" @@ -149,10 +157,6 @@ along with GCC; see the file COPYING3. If not see #include "insn-config.h" #include "recog.h" #include "predict.h" -#include "vec.h" -#include "hashtab.h" -#include "hash-set.h" -#include "machmode.h" #include "input.h" #include "function.h" #include "dominance.h" |