aboutsummaryrefslogtreecommitdiff
path: root/lib/Target/Alpha/AlphaBranchSelector.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2008-01-11 18:10:50 +0000
committerChris Lattner <sabre@nondot.org>2008-01-11 18:10:50 +0000
commit5080f4d9919d39b367891dc51e739c571a66036c (patch)
tree06b044e30429c53461ddb9c1845c55f799394b85 /lib/Target/Alpha/AlphaBranchSelector.cpp
parentf9b3f37abc25375be2ada0f88da7eca863095ad3 (diff)
rename MachineInstr::setInstrDescriptor -> setDesc
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@45871 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Alpha/AlphaBranchSelector.cpp')
-rw-r--r--lib/Target/Alpha/AlphaBranchSelector.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/Alpha/AlphaBranchSelector.cpp b/lib/Target/Alpha/AlphaBranchSelector.cpp
index dba0b9ebf5..f1d60c836f 100644
--- a/lib/Target/Alpha/AlphaBranchSelector.cpp
+++ b/lib/Target/Alpha/AlphaBranchSelector.cpp
@@ -57,7 +57,7 @@ bool AlphaBSel::runOnMachineFunction(MachineFunction &Fn) {
// 1. reg
// 2. target MBB
const TargetInstrInfo *TII = Fn.getTarget().getInstrInfo();
- MBBI->setInstrDescriptor(TII->get(MBBI->getOperand(0).getImm()));
+ MBBI->setDesc(TII->get(MBBI->getOperand(0).getImm()));
}
}
}