diff options
Diffstat (limited to 'gcc/cprop.c')
-rw-r--r-- | gcc/cprop.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gcc/cprop.c b/gcc/cprop.c index f73abc2..1ac06e0 100644 --- a/gcc/cprop.c +++ b/gcc/cprop.c @@ -33,6 +33,11 @@ along with GCC; see the file COPYING3. If not see #include "insn-config.h" #include "recog.h" #include "basic-block.h" +#include "hashtab.h" +#include "hash-set.h" +#include "vec.h" +#include "machmode.h" +#include "input.h" #include "function.h" #include "expr.h" #include "except.h" @@ -41,7 +46,6 @@ along with GCC; see the file COPYING3. If not see #include "intl.h" #include "obstack.h" #include "tree-pass.h" -#include "hashtab.h" #include "df.h" #include "dbgcnt.h" #include "target.h" |