diff options
Diffstat (limited to 'gcc/c-common.c')
-rw-r--r-- | gcc/c-common.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/c-common.c b/gcc/c-common.c index 523ef46..1a35af7 100644 --- a/gcc/c-common.c +++ b/gcc/c-common.c @@ -48,6 +48,7 @@ Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA #include "opts.h" #include "real.h" #include "cgraph.h" +#include "target-def.h" cpp_reader *parse_in; /* Declared in c-pragma.h. */ @@ -6926,4 +6927,8 @@ c_build_cdtor_fns (void) } } +#ifndef TARGET_HAS_TARGETCM +struct gcc_targetcm targetcm = TARGETCM_INITIALIZER; +#endif + #include "gt-c-common.h" |