diff options
Diffstat (limited to 'gcc/combine.c')
-rw-r--r-- | gcc/combine.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/combine.c b/gcc/combine.c index 022a5b5..bc31280 100644 --- a/gcc/combine.c +++ b/gcc/combine.c @@ -6494,7 +6494,7 @@ simplify_if_then_else (rtx x) rtx cond_op0 = XEXP (cond, 0); rtx cond_op1 = XEXP (cond, 1); enum rtx_code op = UNKNOWN, extend_op = UNKNOWN; - machine_mode m = int_mode; + scalar_int_mode m = int_mode; rtx z = 0, c1 = NULL_RTX; if ((GET_CODE (t) == PLUS || GET_CODE (t) == MINUS @@ -7427,9 +7427,9 @@ make_extraction (machine_mode mode, rtx inner, HOST_WIDE_INT pos, ignore the POS lowest bits, etc. */ machine_mode is_mode = GET_MODE (inner); machine_mode inner_mode; - machine_mode wanted_inner_mode; - machine_mode wanted_inner_reg_mode = word_mode; - machine_mode pos_mode = word_mode; + scalar_int_mode wanted_inner_mode; + scalar_int_mode wanted_inner_reg_mode = word_mode; + scalar_int_mode pos_mode = word_mode; machine_mode extraction_mode = word_mode; rtx new_rtx = 0; rtx orig_pos_rtx = pos_rtx; @@ -10316,9 +10316,9 @@ merge_outer_ops (enum rtx_code *pop0, HOST_WIDE_INT *pconst0, enum rtx_code op1, result of the shift is subject to operation OUTER_CODE with operand OUTER_CONST. */ -static machine_mode +static scalar_int_mode try_widen_shift_mode (enum rtx_code code, rtx op, int count, - machine_mode orig_mode, machine_mode mode, + scalar_int_mode orig_mode, scalar_int_mode mode, enum rtx_code outer_code, HOST_WIDE_INT outer_const) { gcc_assert (GET_MODE_PRECISION (mode) > GET_MODE_PRECISION (orig_mode)); |