diff options
author | Chris Lattner <sabre@nondot.org> | 2008-01-11 18:10:50 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-01-11 18:10:50 +0000 |
commit | 596875118cb124f3a7ab9bb70473a5683b34758c (patch) | |
tree | 8e596c0c3d56284c7d345ca36789aa4457ab6e62 /llvm/lib/Target/ARM/ARMConstantIslandPass.cpp | |
parent | 806dd0e2acf5103837c4f7dfaf235acc8c75ae18 (diff) | |
download | bcm5719-llvm-596875118cb124f3a7ab9bb70473a5683b34758c.tar.gz bcm5719-llvm-596875118cb124f3a7ab9bb70473a5683b34758c.zip |
rename MachineInstr::setInstrDescriptor -> setDesc
llvm-svn: 45871
Diffstat (limited to 'llvm/lib/Target/ARM/ARMConstantIslandPass.cpp')
-rw-r--r-- | llvm/lib/Target/ARM/ARMConstantIslandPass.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/ARM/ARMConstantIslandPass.cpp b/llvm/lib/Target/ARM/ARMConstantIslandPass.cpp index ea1ee9e39d4..a9f1f5b75f2 100644 --- a/llvm/lib/Target/ARM/ARMConstantIslandPass.cpp +++ b/llvm/lib/Target/ARM/ARMConstantIslandPass.cpp @@ -1162,7 +1162,7 @@ ARMConstantIslands::FixUpUnconditionalBr(MachineFunction &Fn, ImmBranch &Br) { // Use BL to implement far jump. Br.MaxDisp = (1 << 21) * 2; - MI->setInstrDescriptor(TII->get(ARM::tBfar)); + MI->setDesc(TII->get(ARM::tBfar)); BBSizes[MBB->getNumber()] += 2; AdjustBBOffsetsAfter(MBB, 2); HasFarJump = true; |