diff options
author | Jim Grosbach <grosbach@apple.com> | 2010-06-02 21:53:11 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2010-06-02 21:53:11 +0000 |
commit | 18f30e6f5e80787808fe1455742452a5210afe07 (patch) | |
tree | 25fb6cc56404594f8d8c6ed5057e6f9cd3a462c7 /lib/Target/ARM/ARMConstantIslandPass.cpp | |
parent | 7c8c8830a950a5cc0ddc6d463a205d88cfeb9620 (diff) |
Clean up 80 column violations. No functional change.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@105350 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/ARM/ARMConstantIslandPass.cpp')
-rw-r--r-- | lib/Target/ARM/ARMConstantIslandPass.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Target/ARM/ARMConstantIslandPass.cpp b/lib/Target/ARM/ARMConstantIslandPass.cpp index 13d8b74014..3be6d1c821 100644 --- a/lib/Target/ARM/ARMConstantIslandPass.cpp +++ b/lib/Target/ARM/ARMConstantIslandPass.cpp @@ -418,7 +418,8 @@ void ARMConstantIslands::DoInitialPlacement(MachineFunction &MF, static bool BBHasFallthrough(MachineBasicBlock *MBB) { // Get the next machine basic block in the function. MachineFunction::iterator MBBI = MBB; - if (llvm::next(MBBI) == MBB->getParent()->end()) // Can't fall off end of function. + // Can't fall off end of function. + if (llvm::next(MBBI) == MBB->getParent()->end()) return false; MachineBasicBlock *NextBB = llvm::next(MBBI); |