Commit e7413f3d by Andreas Schwab Committed by Andreas Schwab

m68k.md (*rotlhi3_lowpart, [...]): Name for rotlhi3+1 and rotlqi3+1, resp.

* config/m68k/m68k.md (*rotlhi3_lowpart, *rotlqi3_lowpart): Name
for rotlhi3+1 and rotlqi3+1, resp.  Fix reference to non-existing
third operand.

From-SVN: r198940
parent 8ff25a22
2013-05-15 Andreas Schwab <schwab@suse.de>
* config/m68k/m68k.md (*rotlhi3_lowpart, *rotlqi3_lowpart): Name
for rotlhi3+1 and rotlqi3+1, resp. Fix reference to non-existing
third operand.
2013-05-15 Teresa Johnson <tejohnson@google.com> 2013-05-15 Teresa Johnson <tejohnson@google.com>
* loop-unroll.c (report_unroll_peel): Check decision before * loop-unroll.c (report_unroll_peel): Check decision before
......
...@@ -5211,19 +5211,19 @@ ...@@ -5211,19 +5211,19 @@
return "rol%.w %2,%0"; return "rol%.w %2,%0";
}) })
(define_insn "" (define_insn "*rotlhi3_lowpart"
[(set (strict_low_part (match_operand:HI 0 "register_operand" "+d")) [(set (strict_low_part (match_operand:HI 0 "register_operand" "+d"))
(rotate:HI (match_dup 0) (rotate:HI (match_dup 0)
(match_operand:HI 1 "general_operand" "dIP")))] (match_operand:HI 1 "general_operand" "dIP")))]
"!TARGET_COLDFIRE" "!TARGET_COLDFIRE"
{ {
if (GET_CODE (operands[2]) == CONST_INT && INTVAL (operands[2]) >= 8) if (GET_CODE (operands[1]) == CONST_INT && INTVAL (operands[1]) >= 8)
{ {
operands[2] = GEN_INT (16 - INTVAL (operands[2])); operands[1] = GEN_INT (16 - INTVAL (operands[1]));
return "ror%.w %2,%0"; return "ror%.w %1,%0";
} }
else else
return "rol%.w %2,%0"; return "rol%.w %1,%0";
}) })
(define_insn "rotlqi3" (define_insn "rotlqi3"
...@@ -5241,19 +5241,19 @@ ...@@ -5241,19 +5241,19 @@
return "rol%.b %2,%0"; return "rol%.b %2,%0";
}) })
(define_insn "" (define_insn "*rotlqi3_lowpart"
[(set (strict_low_part (match_operand:QI 0 "register_operand" "+d")) [(set (strict_low_part (match_operand:QI 0 "register_operand" "+d"))
(rotate:QI (match_dup 0) (rotate:QI (match_dup 0)
(match_operand:QI 1 "general_operand" "dI")))] (match_operand:QI 1 "general_operand" "dI")))]
"!TARGET_COLDFIRE" "!TARGET_COLDFIRE"
{ {
if (GET_CODE (operands[2]) == CONST_INT && INTVAL (operands[2]) >= 4) if (GET_CODE (operands[1]) == CONST_INT && INTVAL (operands[1]) >= 4)
{ {
operands[2] = GEN_INT (8 - INTVAL (operands[2])); operands[1] = GEN_INT (8 - INTVAL (operands[1]));
return "ror%.b %2,%0"; return "ror%.b %1,%0";
} }
else else
return "rol%.b %2,%0"; return "rol%.b %1,%0";
}) })
(define_insn "rotrsi3" (define_insn "rotrsi3"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment