diff options
| author | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-08-02 14:02:16 +0000 |
|---|---|---|
| committer | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-08-02 14:02:16 +0000 |
| commit | aca111af8cb84765dfb5cdade248d8f24281ca65 (patch) | |
| tree | beabf8745e14627d2c6bdd37d015bf935eb3d71f | |
| parent | 57c931d2fa610812c3293af7fe7caea5caa98951 (diff) | |
| download | ppe42-gcc-aca111af8cb84765dfb5cdade248d8f24281ca65.tar.gz ppe42-gcc-aca111af8cb84765dfb5cdade248d8f24281ca65.zip | |
* i386.md (shift to lea splitter): Use const_int_operand.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@35423 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 35637aad1db..90f51cc506e 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +Wed Aug 2 15:59:34 MET DST 2000 Jan Hubicka <jh@suse.cz> + + * i386.md (shift to lea splitter): Use const_int_operand. + 2000-08-02 Zack Weinberg <zack@wolery.cumb.org> * cppexp.c, cppinit.c, cpplex.c, cpplib.c, cppmacro.c, diff --git a/gcc/config/i386/i386.md b/gcc/config/i386/i386.md index 5b2aea37744..b6324b6ff7a 100644 --- a/gcc/config/i386/i386.md +++ b/gcc/config/i386/i386.md @@ -6488,7 +6488,7 @@ (define_split [(set (match_operand 0 "register_operand" "") (ashift (match_operand 1 "register_operand" "") - (match_operand:QI 2 "const248_operand" ""))) + (match_operand:QI 2 "const_int_operand" ""))) (clobber (reg:CC 17))] "reload_completed && true_regnum (operands[0]) != true_regnum (operands[1])" |

