summaryrefslogtreecommitdiff
path: root/lib/Target/Alpha
diff options
context:
space:
mode:
authorAndrew Lenharth <andrewl@lenharth.org>2006-03-09 18:18:51 +0000
committerAndrew Lenharth <andrewl@lenharth.org>2006-03-09 18:18:51 +0000
commitddc877ccaea440447cb32c8faf4c6ac6b6791472 (patch)
tree86e827d642c0b3356b01ce05caef8b092877ca93 /lib/Target/Alpha
parent79cdfa3ee2caa4ddc10e557de3a2b77e2ec137ea (diff)
downloadllvm-ddc877ccaea440447cb32c8faf4c6ac6b6791472.tar.gz
llvm-ddc877ccaea440447cb32c8faf4c6ac6b6791472.tar.bz2
llvm-ddc877ccaea440447cb32c8faf4c6ac6b6791472.tar.xz
these are copies too
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26653 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Alpha')
-rw-r--r--lib/Target/Alpha/AlphaInstrInfo.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/Target/Alpha/AlphaInstrInfo.cpp b/lib/Target/Alpha/AlphaInstrInfo.cpp
index 7089f52e48..c30f38aee3 100644
--- a/lib/Target/Alpha/AlphaInstrInfo.cpp
+++ b/lib/Target/Alpha/AlphaInstrInfo.cpp
@@ -26,7 +26,11 @@ bool AlphaInstrInfo::isMoveInstr(const MachineInstr& MI,
unsigned& sourceReg,
unsigned& destReg) const {
MachineOpCode oc = MI.getOpcode();
- if (oc == Alpha::BIS || oc == Alpha::CPYSS || oc == Alpha::CPYST) {
+ if (oc == Alpha::BIS ||
+ oc == Alpha::CPYSS ||
+ oc == Alpha::CPYST ||
+ oc == Alpha::CPYSSt ||
+ oc == Alpha::CPYSTs) {
// or r1, r2, r2
// cpys(s|t) r1 r2 r2
assert(MI.getNumOperands() == 3 &&