diff options
author | Jan Hubicka <jh@suse.cz> | 2000-08-02 14:02:16 +0000 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2000-08-02 14:02:16 +0000 |
commit | ca4ae08d95126ce975cf5cb82dc77fbc2b839bfc (patch) | |
tree | beabf8745e14627d2c6bdd37d015bf935eb3d71f /gcc | |
parent | 8e4e0347b50e50f83a32035004865ebb6c47a0ab (diff) | |
download | gcc-ca4ae08d95126ce975cf5cb82dc77fbc2b839bfc.zip gcc-ca4ae08d95126ce975cf5cb82dc77fbc2b839bfc.tar.gz gcc-ca4ae08d95126ce975cf5cb82dc77fbc2b839bfc.tar.bz2 |
* i386.md (shift to lea splitter): Use const_int_operand.
From-SVN: r35423
Diffstat (limited to 'gcc')
-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 35637aa..90f51cc 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 5b2aea3..b6324b6 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])" |