summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/Alpha/AlphaInstrInfo.cpp
diff options
context:
space:
mode:
authorAndrew Lenharth <andrewl@lenharth.org>2006-10-31 23:46:56 +0000
committerAndrew Lenharth <andrewl@lenharth.org>2006-10-31 23:46:56 +0000
commitdfbf91e59d20b27bf7aaa411f92d07369722c009 (patch)
tree97d2fddfd70948adc0326e225c5094c7bb090596 /llvm/lib/Target/Alpha/AlphaInstrInfo.cpp
parentfe43befedac43670e508682d1d9f73691600e4c4 (diff)
downloadbcm5719-llvm-dfbf91e59d20b27bf7aaa411f92d07369722c009.tar.gz
bcm5719-llvm-dfbf91e59d20b27bf7aaa411f92d07369722c009.zip
more shotenning
llvm-svn: 31331
Diffstat (limited to 'llvm/lib/Target/Alpha/AlphaInstrInfo.cpp')
-rw-r--r--llvm/lib/Target/Alpha/AlphaInstrInfo.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/Alpha/AlphaInstrInfo.cpp b/llvm/lib/Target/Alpha/AlphaInstrInfo.cpp
index 90ef7bbaac6..7a342b96430 100644
--- a/llvm/lib/Target/Alpha/AlphaInstrInfo.cpp
+++ b/llvm/lib/Target/Alpha/AlphaInstrInfo.cpp
@@ -26,7 +26,7 @@ bool AlphaInstrInfo::isMoveInstr(const MachineInstr& MI,
unsigned& sourceReg,
unsigned& destReg) const {
MachineOpCode oc = MI.getOpcode();
- if (oc == Alpha::BIS ||
+ if (oc == Alpha::BISr ||
oc == Alpha::CPYSS ||
oc == Alpha::CPYST ||
oc == Alpha::CPYSSt ||
@@ -229,7 +229,7 @@ void AlphaInstrInfo::RemoveBranch(MachineBasicBlock &MBB) const {
void AlphaInstrInfo::insertNoop(MachineBasicBlock &MBB,
MachineBasicBlock::iterator MI) const {
- BuildMI(MBB, MI, Alpha::BIS, 2, Alpha::R31).addReg(Alpha::R31)
+ BuildMI(MBB, MI, Alpha::BISr, 2, Alpha::R31).addReg(Alpha::R31)
.addReg(Alpha::R31);
}
OpenPOWER on IntegriCloud