diff options
Diffstat (limited to 'gcc/tree-vrp.c')
-rw-r--r-- | gcc/tree-vrp.c | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/gcc/tree-vrp.c b/gcc/tree-vrp.c index 2e0b158..acf6b20 100644 --- a/gcc/tree-vrp.c +++ b/gcc/tree-vrp.c @@ -38,7 +38,6 @@ along with GCC; see the file COPYING3. If not see #include "calls.h" #include "predict.h" #include "hard-reg-set.h" -#include "input.h" #include "function.h" #include "dominance.h" #include "cfg.h" @@ -74,11 +73,22 @@ along with GCC; see the file COPYING3. If not see #include "tree-ssa-propagate.h" #include "tree-chrec.h" #include "tree-ssa-threadupdate.h" +#include "hashtab.h" +#include "rtl.h" +#include "statistics.h" +#include "real.h" +#include "fixed-value.h" +#include "insn-config.h" +#include "expmed.h" +#include "dojump.h" +#include "explow.h" +#include "emit-rtl.h" +#include "varasm.h" +#include "stmt.h" #include "expr.h" #include "insn-codes.h" #include "optabs.h" #include "tree-ssa-threadedge.h" -#include "wide-int.h" |