diff options
| author | wilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-10-23 01:06:40 +0000 |
|---|---|---|
| committer | wilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-10-23 01:06:40 +0000 |
| commit | 33c99202e6125cde62f7ea4e0215ec53b61a4b38 (patch) | |
| tree | 9b9241fbdab2023e1fa09afff705c19deb109b6f | |
| parent | a7fa1ad5cfcfbf59004d4f70dac7fb1bb467bd20 (diff) | |
| download | ppe42-gcc-33c99202e6125cde62f7ea4e0215ec53b61a4b38.tar.gz ppe42-gcc-33c99202e6125cde62f7ea4e0215ec53b61a4b38.zip | |
Minor performance tweak, and workaround for reload bug.
* config/i386/i386.md (subdi3_1): Add call to ix86_binary_operator_ok.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@58432 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 4 | ||||
| -rw-r--r-- | gcc/config/i386/i386.md | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 4174a7c8bc9..27c9afd0a88 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2002-10-22 Jim Wilson <wilson@redhat.com> + + * config/i386/i386.md (subdi3_1): Add call to ix86_binary_operator_ok. + Wed Oct 23 01:52:36 CEST 2002 Jan Hubicka <jh@suse.cz> PR other/8289 diff --git a/gcc/config/i386/i386.md b/gcc/config/i386/i386.md index 30b5c9e7d96..a09da46732d 100644 --- a/gcc/config/i386/i386.md +++ b/gcc/config/i386/i386.md @@ -6359,7 +6359,7 @@ (minus:DI (match_operand:DI 1 "nonimmediate_operand" "0,0") (match_operand:DI 2 "general_operand" "roiF,riF"))) (clobber (reg:CC 17))] - "!TARGET_64BIT" + "!TARGET_64BIT && ix86_binary_operator_ok (MINUS, DImode, operands)" "#") (define_split |

