diff options
| author | Evan Cheng <evan.cheng@apple.com> | 2009-07-07 01:16:41 +0000 |
|---|---|---|
| committer | Evan Cheng <evan.cheng@apple.com> | 2009-07-07 01:16:41 +0000 |
| commit | 451192e123b9429e0f9788e26e4b33db0e3019fd (patch) | |
| tree | 8cc0469770dc1bd370b82c656ece94caaee4a141 /lib/Target | |
| parent | 69976cfc1450a5058c31790d7d508d148d3294e3 (diff) | |
| download | external_llvm-451192e123b9429e0f9788e26e4b33db0e3019fd.zip external_llvm-451192e123b9429e0f9788e26e4b33db0e3019fd.tar.gz external_llvm-451192e123b9429e0f9788e26e4b33db0e3019fd.tar.bz2 | |
80 col violation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74888 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target')
| -rw-r--r-- | lib/Target/ARM/ARMConstantIslandPass.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/ARM/ARMConstantIslandPass.cpp b/lib/Target/ARM/ARMConstantIslandPass.cpp index 9fedaa4..3898a0a 100644 --- a/lib/Target/ARM/ARMConstantIslandPass.cpp +++ b/lib/Target/ARM/ARMConstantIslandPass.cpp @@ -590,8 +590,8 @@ MachineBasicBlock *ARMConstantIslands::SplitBlockBeforeInstr(MachineInstr *MI) { // Note the new unconditional branch is not being recorded. // There doesn't seem to be meaningful DebugInfo available; this doesn't // correspond to anything in the source. - BuildMI(OrigBB, DebugLoc::getUnknownLoc(), - TII->get(isThumb ? ((isThumb2) ? ARM::t2B : ARM::tB) : ARM::B)).addMBB(NewBB); + unsigned Opc = isThumb ? (isThumb2 ? ARM::t2B : ARM::tB) : ARM::B; + BuildMI(OrigBB, DebugLoc::getUnknownLoc(), TII->get(Opc)).addMBB(NewBB); NumSplit++; // Update the CFG. All succs of OrigBB are now succs of NewBB. |
