diff options
Diffstat (limited to 'gcc/tsan.c')
-rw-r--r-- | gcc/tsan.c | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/gcc/tsan.c b/gcc/tsan.c index 1ba0cbc7216..05771049b21 100644 --- a/gcc/tsan.c +++ b/gcc/tsan.c @@ -26,6 +26,16 @@ along with GCC; see the file COPYING3. If not see #include "expr.h" #include "intl.h" #include "tm.h" +#include "predict.h" +#include "vec.h" +#include "hashtab.h" +#include "hash-set.h" +#include "machmode.h" +#include "hard-reg-set.h" +#include "input.h" +#include "function.h" +#include "dominance.h" +#include "cfg.h" #include "basic-block.h" #include "tree-ssa-alias.h" #include "internal-fn.h" @@ -34,13 +44,6 @@ along with GCC; see the file COPYING3. If not see #include "gimple.h" #include "gimplify.h" #include "gimple-iterator.h" -#include "hashtab.h" -#include "hash-set.h" -#include "vec.h" -#include "machmode.h" -#include "hard-reg-set.h" -#include "input.h" -#include "function.h" #include "gimple-ssa.h" #include "cgraph.h" #include "tree-cfg.h" |