From: James Van Artsdalen Date: Wed, 27 May 1992 17:53:14 +0000 (+0000) Subject: *** empty log message *** X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=10f4f53f434aa4d421e9113197e7c1d71522d8a5;p=gcc.git *** empty log message *** From-SVN: r1096 --- diff --git a/gcc/config/i386/i386.md b/gcc/config/i386/i386.md index e387281e2d5..ce524320cc3 100644 --- a/gcc/config/i386/i386.md +++ b/gcc/config/i386/i386.md @@ -2248,7 +2248,7 @@ "" " { - if (! GET_CODE (operands[2]) == CONST_INT + if (GET_CODE (operands[2]) != CONST_INT || ! CONST_OK_FOR_LETTER_P (INTVAL (operands[2]), 'J')) { operands[2] = copy_to_mode_reg (QImode, operands[2]); @@ -2411,7 +2411,7 @@ "" " { - if (! GET_CODE (operands[2]) == CONST_INT + if (GET_CODE (operands[2]) != CONST_INT || ! CONST_OK_FOR_LETTER_P (INTVAL (operands[2]), 'J')) { operands[2] = copy_to_mode_reg (QImode, operands[2]); @@ -2548,7 +2548,7 @@ "" " { - if (! GET_CODE (operands[2]) == CONST_INT + if (GET_CODE (operands[2]) != CONST_INT || ! CONST_OK_FOR_LETTER_P (INTVAL (operands[2]), 'J')) { operands[2] = copy_to_mode_reg (QImode, operands[2]);