From: Jeff Law Date: Mon, 3 Mar 1997 20:12:07 +0000 (-0700) Subject: combine.c (simplify_rtx): Do nothing with (truncate:mode) if mode is a partial intege... X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e30fb98f9be427c8c6f3f857cd306246dd36d9cb;p=gcc.git combine.c (simplify_rtx): Do nothing with (truncate:mode) if mode is a partial integer mode. * combine.c (simplify_rtx): Do nothing with (truncate:mode) if mode is a partial integer mode. From-SVN: r13686 --- diff --git a/gcc/combine.c b/gcc/combine.c index 6a6ebb4dbfa..2300ce91128 100644 --- a/gcc/combine.c +++ b/gcc/combine.c @@ -3590,6 +3590,12 @@ simplify_rtx (x, op0_mode, last, in_dest) break; case TRUNCATE: + /* We can't handle truncation to a partial integer mode here + because we don't know the real bitsize of the partial + integer mode. */ + if (GET_MODE_CLASS (mode) == MODE_PARTIAL_INT) + break; + if (GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT) SUBST (XEXP (x, 0), force_to_mode (XEXP (x, 0), GET_MODE (XEXP (x, 0)),