diff options
author | Torbjorn Granlund <tege@gnu.org> | 1993-02-12 16:27:41 +0000 |
---|---|---|
committer | Torbjorn Granlund <tege@gnu.org> | 1993-02-12 16:27:41 +0000 |
commit | 5203195731936a8c7ed99495f920133495e2f4d1 (patch) | |
tree | 9384c5a2782fb94d80e98dc1b93e35a7b98ae538 /gcc/config/pa/pa.md | |
parent | 9392c110ebf2313163f444f21341b6c5c8daf44c (diff) | |
download | gcc-5203195731936a8c7ed99495f920133495e2f4d1.zip gcc-5203195731936a8c7ed99495f920133495e2f4d1.tar.gz gcc-5203195731936a8c7ed99495f920133495e2f4d1.tar.bz2 |
(rotlsi3): Fix typo, rotate was rotatert in rtl template.
From-SVN: r3466
Diffstat (limited to 'gcc/config/pa/pa.md')
-rw-r--r-- | gcc/config/pa/pa.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/pa/pa.md b/gcc/config/pa/pa.md index 03c3008..f86e23c 100644 --- a/gcc/config/pa/pa.md +++ b/gcc/config/pa/pa.md @@ -2316,8 +2316,8 @@ (define_insn "rotlsi3" [(set (match_operand:SI 0 "register_operand" "=r") - (rotatert:SI (match_operand:SI 1 "register_operand" "r") - (match_operand:SI 2 "const_int_operand" "n")))] + (rotate:SI (match_operand:SI 1 "register_operand" "r") + (match_operand:SI 2 "const_int_operand" "n")))] "" "* { |