diff options
Diffstat (limited to 'gcc/config/arm/thumb2.md')
-rw-r--r-- | gcc/config/arm/thumb2.md | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/config/arm/thumb2.md b/gcc/config/arm/thumb2.md index 983b59dc073..64acfeaa769 100644 --- a/gcc/config/arm/thumb2.md +++ b/gcc/config/arm/thumb2.md @@ -416,7 +416,7 @@ (const_int 0)))] { operands[3] = GEN_INT (~0); - enum machine_mode mode = GET_MODE (operands[2]); + machine_mode mode = GET_MODE (operands[2]); enum rtx_code rc = GET_CODE (operands[1]); if (mode == CCFPmode || mode == CCFPEmode) @@ -503,7 +503,7 @@ [(const_int 0)] { enum rtx_code rev_code; - enum machine_mode mode; + machine_mode mode; rtx rev_cond; emit_insn (gen_rtx_COND_EXEC (VOIDmode, @@ -595,7 +595,7 @@ (and:SI (match_dup 3) (const_int 1))) (cond_exec (match_dup 4) (set (match_dup 0) (const_int 0)))] { - enum machine_mode mode = GET_MODE (operands[2]); + machine_mode mode = GET_MODE (operands[2]); enum rtx_code rc = GET_CODE (operands[1]); if (mode == CCFPmode || mode == CCFPEmode) @@ -627,7 +627,7 @@ (cond_exec (match_dup 4) (set (match_dup 0) (ior:SI (match_dup 3) (const_int 1))))] { - enum machine_mode mode = GET_MODE (operands[2]); + machine_mode mode = GET_MODE (operands[2]); enum rtx_code rc = GET_CODE (operands[1]); operands[4] = gen_rtx_fmt_ee (rc, VOIDmode, operands[2], const0_rtx); @@ -891,7 +891,7 @@ { /* Emit: cmp\\t%1, %2\;mvn\\t%0, #0\;it\\t%D3\;mov%D3\\t%0, #0\;*/ enum rtx_code rc = reverse_condition (GET_CODE (operands[3])); - enum machine_mode mode = SELECT_CC_MODE (rc, operands[1], operands[2]); + machine_mode mode = SELECT_CC_MODE (rc, operands[1], operands[2]); rtx tmp1 = gen_rtx_REG (mode, CC_REGNUM); emit_insn (gen_rtx_SET (VOIDmode, |