diff options
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])" |