From 6a11342fe7bec1a52963dd1237d0110ebfad378e Mon Sep 17 00:00:00 2001 From: Doug Evans Date: Mon, 6 Nov 1995 15:26:27 +0000 Subject: [PATCH] (force_to_mode): Fix typo in fix to last change. From-SVN: r10564 --- gcc/combine.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/combine.c b/gcc/combine.c index 630a16f736c..9d13e52b0dc 100644 --- a/gcc/combine.c +++ b/gcc/combine.c @@ -6039,7 +6039,7 @@ force_to_mode (x, mode, mask, reg, just_select) represent a mask for all its bits in a single scalar. But we only care about the lower bits, so calculate these. */ - if (GET_MODE_BITSIZE (GET_MODE (x)) > HOST_BITS_PER_WIDE_INT)) + if (GET_MODE_BITSIZE (GET_MODE (x)) > HOST_BITS_PER_WIDE_INT) { nonzero = ~(HOST_WIDE_INT)0; -- 2.30.2