diff options
Diffstat (limited to 'gcc/ubsan.c')
-rw-r--r-- | gcc/ubsan.c | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/gcc/ubsan.c b/gcc/ubsan.c index 7dae9670338..f4555491251 100644 --- a/gcc/ubsan.c +++ b/gcc/ubsan.c @@ -21,7 +21,18 @@ along with GCC; see the file COPYING3. If not see #include "config.h" #include "system.h" #include "coretypes.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 "options.h" +#include "wide-int.h" +#include "inchash.h" #include "tree.h" +#include "fold-const.h" #include "stor-layout.h" #include "stringpool.h" #include "predict.h" @@ -32,10 +43,6 @@ along with GCC; see the file COPYING3. If not see #include "hash-map.h" #include "is-a.h" #include "plugin-api.h" -#include "vec.h" -#include "hashtab.h" -#include "hash-set.h" -#include "machmode.h" #include "tm.h" #include "hard-reg-set.h" #include "input.h" |