diff options
Diffstat (limited to 'gcc/c-common.c')
-rw-r--r-- | gcc/c-common.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/gcc/c-common.c b/gcc/c-common.c index 6a5315b..04b2909 100644 --- a/gcc/c-common.c +++ b/gcc/c-common.c @@ -28,9 +28,7 @@ along with GCC; see the file COPYING3. If not see #include "flags.h" #include "output.h" #include "c-pragma.h" -#include "rtl.h" #include "ggc.h" -#include "expr.h" /* For vector_mode_valid_p */ #include "c-common.h" #include "tm_p.h" #include "obstack.h" @@ -49,6 +47,14 @@ along with GCC; see the file COPYING3. If not see #include "target-def.h" #include "libfuncs.h" +/* FIXME: Still need to include rtl.h here (via expr.h) in a front-end file. + Pretend this is a back-end file. */ +#define IN_GCC_BACKEND +#include "expr.h" /* For vector_mode_valid_p */ + +/* FIXME: Needed for TARGET_ENUM_VA_LIST, which should be a target hook. */ +#include "tm_p.h" + cpp_reader *parse_in; /* Declared in c-pragma.h. */ /* The following symbols are subsumed in the c_global_trees array, and |