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 | 7c9434399d06768f438f1dc9c78ca52504ec4a6a (patch) | |
tree | bd5f72d450d6fafa06900451bff0dd1e8ccdbed1 /llvm | |
parent | 3f50f7e853f91cd727f368a09a059f55ce9f6331 (diff) | |
download | bcm5719-llvm-7c9434399d06768f438f1dc9c78ca52504ec4a6a.tar.gz bcm5719-llvm-7c9434399d06768f438f1dc9c78ca52504ec4a6a.zip |
80 col violation.
llvm-svn: 74888
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/lib/Target/ARM/ARMConstantIslandPass.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/ARM/ARMConstantIslandPass.cpp b/llvm/lib/Target/ARM/ARMConstantIslandPass.cpp index 9fedaa46543..3898a0a9229 100644 --- a/llvm/lib/Target/ARM/ARMConstantIslandPass.cpp +++ b/llvm/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. |