From: Tom Wood Date: Tue, 13 Oct 1992 17:08:49 +0000 (+0000) Subject: (ext shift patterns): No longer needed. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=68403115dd3819c02a4e75fc085192b95f69dce0;p=gcc.git (ext shift patterns): No longer needed. From-SVN: r2427 --- diff --git a/gcc/config/m88k/m88k.md b/gcc/config/m88k/m88k.md index d559474ab76..2e26800e1a3 100644 --- a/gcc/config/m88k/m88k.md +++ b/gcc/config/m88k/m88k.md @@ -28,7 +28,7 @@ (define_expand "m88k_sccs_id" [(match_operand:SI 0 "" "")] "" - "{ static char sccs_id[] = \"@(#)m88k.md 2.2.13.2 10/09/92 13:24:17\"; + "{ static char sccs_id[] = \"@(#)m88k.md 2.2.13.3 10/13/92 13:03:43\"; FAIL; }") ;; Attribute specifications @@ -329,37 +329,6 @@ ;; produce the necessary insns to support TARGET_*_LARGE_SHIFT, so nothing ;; special needs to be done here. -;; (a << int1) >> int2 optimizations into a single extract. -;; These patterns need to occur before the normal shift patterns - -(define_insn "" - [(set (match_operand:SI 0 "register_operand" "=r") - (ashiftrt:SI (ashift:SI (match_operand:SI 1 "register_operand" "r") - (match_operand:SI 2 "int5_operand" "")) - (match_operand:SI 3 "int5_operand" "")))] - "INTVAL (operands [2]) <= INTVAL (operands [3])" - "* -{ - operands[4] = gen_rtx (CONST_INT, SImode, - INTVAL (operands[3]) - INTVAL (operands[2])); - return \"ext %0,%1,%w3<%4>\"; /* <(%3-%2)> */ -}" - [(set_attr "type" "bit")]) - -(define_insn "" - [(set (match_operand:SI 0 "register_operand" "=r") - (lshiftrt:SI (ashift:SI (match_operand:SI 1 "register_operand" "r") - (match_operand:SI 2 "int5_operand" "")) - (match_operand:SI 3 "int5_operand" "")))] - "INTVAL (operands [2]) <= INTVAL (operands [3])" - "* -{ - operands[4] = gen_rtx (CONST_INT, SImode, - INTVAL (operands[3]) - INTVAL (operands[2])); - return \"extu %0,%1,%w3<%4>\"; /* <(%3-%2)> */ -}" - [(set_attr "type" "bit")]) - ;; Optimize possible cases of the set instruction. (define_insn ""