diff options
author | Andreas Schwab <schwab@suse.de> | 2013-05-15 16:10:59 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@gcc.gnu.org> | 2013-05-15 16:10:59 +0000 |
commit | e7413f3dee45949c1e205bd18072c2a7e6c09635 (patch) | |
tree | 3093a0589fcc05ef3f76e89d066851f44b409654 /gcc | |
parent | 8ff25a2279081ff24df5ddff9b76b500b75ec03b (diff) | |
download | gcc-e7413f3dee45949c1e205bd18072c2a7e6c09635.zip gcc-e7413f3dee45949c1e205bd18072c2a7e6c09635.tar.gz gcc-e7413f3dee45949c1e205bd18072c2a7e6c09635.tar.bz2 |
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
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/config/m68k/m68k.md | 20 |
2 files changed, 16 insertions, 10 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 9eed4a9..889d879 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +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> * loop-unroll.c (report_unroll_peel): Check decision before diff --git a/gcc/config/m68k/m68k.md b/gcc/config/m68k/m68k.md index abf4b61..719b86b 100644 --- a/gcc/config/m68k/m68k.md +++ b/gcc/config/m68k/m68k.md @@ -5211,19 +5211,19 @@ return "rol%.w %2,%0"; }) -(define_insn "" +(define_insn "*rotlhi3_lowpart" [(set (strict_low_part (match_operand:HI 0 "register_operand" "+d")) (rotate:HI (match_dup 0) (match_operand:HI 1 "general_operand" "dIP")))] "!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])); - return "ror%.w %2,%0"; + operands[1] = GEN_INT (16 - INTVAL (operands[1])); + return "ror%.w %1,%0"; } else - return "rol%.w %2,%0"; + return "rol%.w %1,%0"; }) (define_insn "rotlqi3" @@ -5241,19 +5241,19 @@ return "rol%.b %2,%0"; }) -(define_insn "" +(define_insn "*rotlqi3_lowpart" [(set (strict_low_part (match_operand:QI 0 "register_operand" "+d")) (rotate:QI (match_dup 0) (match_operand:QI 1 "general_operand" "dI")))] "!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])); - return "ror%.b %2,%0"; + operands[1] = GEN_INT (8 - INTVAL (operands[1])); + return "ror%.b %1,%0"; } else - return "rol%.b %2,%0"; + return "rol%.b %1,%0"; }) (define_insn "rotrsi3" |