From 10f4f53f434aa4d421e9113197e7c1d71522d8a5 Mon Sep 17 00:00:00 2001 From: James Van Artsdalen Date: Wed, 27 May 1992 17:53:14 +0000 Subject: [PATCH] *** empty log message *** From-SVN: r1096 --- gcc/config/i386/i386.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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]); -- 2.30.2