diff options
Diffstat (limited to 'gcc/config/arm/arm.h')
-rw-r--r-- | gcc/config/arm/arm.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/config/arm/arm.h b/gcc/config/arm/arm.h index 5b54a655ce2..02d0a93f749 100644 --- a/gcc/config/arm/arm.h +++ b/gcc/config/arm/arm.h @@ -29,14 +29,14 @@ #ifndef GCC_ARM_H #define GCC_ARM_H -/* We can't use enum machine_mode inside a generator file because it +/* We can't use machine_mode inside a generator file because it hasn't been created yet; we shouldn't be using any code that needs the real definition though, so this ought to be safe. */ #ifdef GENERATOR_FILE #define MACHMODE int #else #include "insn-modes.h" -#define MACHMODE enum machine_mode +#define MACHMODE machine_mode #endif #include "config/vxworks-dummy.h" @@ -1547,7 +1547,7 @@ typedef struct GTY(()) machine_function rtx thumb1_cc_op0; rtx thumb1_cc_op1; /* Also record the CC mode that is supported. */ - enum machine_mode thumb1_cc_mode; + machine_mode thumb1_cc_mode; /* Set to 1 after arm_reorg has started. */ int after_arm_reorg; } |