From: Doug Evans Date: Mon, 6 Nov 1995 15:26:27 +0000 (+0000) Subject: (force_to_mode): Fix typo in fix to last change. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6a11342fe7bec1a52963dd1237d0110ebfad378e;p=gcc.git (force_to_mode): Fix typo in fix to last change. From-SVN: r10564 --- 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;