diff options
Diffstat (limited to 'gcc/internal-fn.c')
-rw-r--r-- | gcc/internal-fn.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/internal-fn.c b/gcc/internal-fn.c index 18466cd..d8dadca 100644 --- a/gcc/internal-fn.c +++ b/gcc/internal-fn.c @@ -2104,7 +2104,7 @@ expand_arith_overflow (enum tree_code code, gimple *stmt) /* The infinity precision result will always fit into result. */ rtx target = expand_expr (lhs, NULL_RTX, VOIDmode, EXPAND_WRITE); write_complex_part (target, const0_rtx, true); - enum machine_mode mode = TYPE_MODE (type); + machine_mode mode = TYPE_MODE (type); struct separate_ops ops; ops.code = code; ops.type = type; @@ -2157,7 +2157,7 @@ expand_arith_overflow (enum tree_code code, gimple *stmt) if (orig_precres == precres && precop <= BITS_PER_WORD) { int p = MAX (min_precision, precop); - enum machine_mode m = smallest_mode_for_size (p, MODE_INT); + machine_mode m = smallest_mode_for_size (p, MODE_INT); tree optype = build_nonstandard_integer_type (GET_MODE_PRECISION (m), uns0_p && uns1_p && unsr_p); @@ -2199,7 +2199,7 @@ expand_arith_overflow (enum tree_code code, gimple *stmt) if (orig_precres == precres) { int p = MAX (prec0, prec1); - enum machine_mode m = smallest_mode_for_size (p, MODE_INT); + machine_mode m = smallest_mode_for_size (p, MODE_INT); tree optype = build_nonstandard_integer_type (GET_MODE_PRECISION (m), uns0_p && uns1_p && unsr_p); |