diff options
author | James Van Artsdalen <jrv@gnu.org> | 1992-05-27 17:53:14 +0000 |
---|---|---|
committer | James Van Artsdalen <jrv@gnu.org> | 1992-05-27 17:53:14 +0000 |
commit | 10f4f53f434aa4d421e9113197e7c1d71522d8a5 (patch) | |
tree | 780afd7948782b348cc9ebea08541cd0cac629a1 /gcc | |
parent | 3c3eeea6b28b3566757556769d3a51eda0d31484 (diff) | |
download | gcc-10f4f53f434aa4d421e9113197e7c1d71522d8a5.zip gcc-10f4f53f434aa4d421e9113197e7c1d71522d8a5.tar.gz gcc-10f4f53f434aa4d421e9113197e7c1d71522d8a5.tar.bz2 |
*** empty log message ***
From-SVN: r1096
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/i386/i386.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/config/i386/i386.md b/gcc/config/i386/i386.md index e387281..ce52432 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]); |