diff options
author | Colin LeMahieu <colinl@codeaurora.org> | 2014-12-16 23:36:15 +0000 |
---|---|---|
committer | Colin LeMahieu <colinl@codeaurora.org> | 2014-12-16 23:36:15 +0000 |
commit | aa1bade7b4566f1409d0b6694a0517901ba3fbf1 (patch) | |
tree | 22e051054ff2422e913fd90a1a9dafe804e7b5cc /llvm/lib/Target/Hexagon/HexagonPeephole.cpp | |
parent | 0804f467f290ee479ec4ebf4b675880e46b9dfae (diff) | |
download | bcm5719-llvm-aa1bade7b4566f1409d0b6694a0517901ba3fbf1.tar.gz bcm5719-llvm-aa1bade7b4566f1409d0b6694a0517901ba3fbf1.zip |
[Hexagon] Updating doubleword shift usages to new versions.
llvm-svn: 224391
Diffstat (limited to 'llvm/lib/Target/Hexagon/HexagonPeephole.cpp')
-rw-r--r-- | llvm/lib/Target/Hexagon/HexagonPeephole.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/Hexagon/HexagonPeephole.cpp b/llvm/lib/Target/Hexagon/HexagonPeephole.cpp index 6553072f4be..a36efe701ba 100644 --- a/llvm/lib/Target/Hexagon/HexagonPeephole.cpp +++ b/llvm/lib/Target/Hexagon/HexagonPeephole.cpp @@ -169,7 +169,7 @@ bool HexagonPeephole::runOnMachineFunction(MachineFunction &MF) { // %vregIntReg = COPY %vregDoubleReg1:subreg_loreg. // and convert into // %vregIntReg = COPY %vregDoubleReg0:subreg_hireg. - if (MI->getOpcode() == Hexagon::LSRd_ri) { + if (MI->getOpcode() == Hexagon::S2_lsr_i_p) { assert(MI->getNumOperands() == 3); MachineOperand &Dst = MI->getOperand(0); MachineOperand &Src1 = MI->getOperand(1); |