From 4cca99f4bd0d1b4e81b11adc1d0394135a42eff4 Mon Sep 17 00:00:00 2001 From: Jeffrey A Law Date: Thu, 31 Dec 1998 00:13:53 +0000 Subject: [PATCH] m68k.md (adddi_dilshr32): Allow all operands to be registers too. * m68k.md (adddi_dilshr32): Allow all operands to be registers too. (adddi_dishl32): Similarly. From-SVN: r24452 --- gcc/ChangeLog | 3 +++ gcc/config/m68k/m68k.md | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index b09d36a..e5fd3a5 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,8 @@ Wed Dec 30 23:38:55 1998 Jeffrey A Law (law@cygnus.com) + * m68k.md (adddi_dilshr32): Allow all operands to be registers too. + (adddi_dishl32): Similarly. + * cse.c (invalidate_skipped_block): Call invalidate_from_clobbers for each insn in the skipped block. diff --git a/gcc/config/m68k/m68k.md b/gcc/config/m68k/m68k.md index a648ec8..562fb07 100644 --- a/gcc/config/m68k/m68k.md +++ b/gcc/config/m68k/m68k.md @@ -2104,7 +2104,7 @@ ;; (plus:DI (match_operand:DI 2 "general_operand" "%0") ;; (lshiftrt:DI (match_operand:DI 1 "general_operand" "ro") ;; (const_int 32))))] - (plus:DI (lshiftrt:DI (match_operand:DI 1 "general_operand" "o,r") + (plus:DI (lshiftrt:DI (match_operand:DI 1 "general_operand" "ro,r") (const_int 32)) (match_operand:DI 2 "general_operand" "0,0")))] "" @@ -2123,7 +2123,7 @@ ;; (plus:DI (match_operand:DI 2 "general_operand" "%0") ;; (ashift:DI (match_operand:DI 1 "general_operand" "ro") ;; (const_int 32))))] - (plus:DI (ashift:DI (match_operand:DI 1 "general_operand" "o,r") + (plus:DI (ashift:DI (match_operand:DI 1 "general_operand" "ro,r") (const_int 32)) (match_operand:DI 2 "general_operand" "0,0")))] "" -- 2.7.4