summaryrefslogtreecommitdiff
path: root/lib/Target/ARM/Thumb2SizeReduction.cpp
diff options
context:
space:
mode:
authorJim Grosbach <grosbach@apple.com>2012-04-06 23:43:50 +0000
committerJim Grosbach <grosbach@apple.com>2012-04-06 23:43:50 +0000
commitd4f020a3af325630973df8d3a084d0b0e3b68ebc (patch)
treeeba8c0b33bbcb4fe099e375fd97a9509e26a25d5 /lib/Target/ARM/Thumb2SizeReduction.cpp
parent967cbbd8b5a328498b27a70bfa5f621c853692df (diff)
downloadllvm-d4f020a3af325630973df8d3a084d0b0e3b68ebc.tar.gz
llvm-d4f020a3af325630973df8d3a084d0b0e3b68ebc.tar.bz2
llvm-d4f020a3af325630973df8d3a084d0b0e3b68ebc.tar.xz
Tidy up. 80 columns.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@154226 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/ARM/Thumb2SizeReduction.cpp')
-rw-r--r--lib/Target/ARM/Thumb2SizeReduction.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/ARM/Thumb2SizeReduction.cpp b/lib/Target/ARM/Thumb2SizeReduction.cpp
index fb9d93b263..b5a397e616 100644
--- a/lib/Target/ARM/Thumb2SizeReduction.cpp
+++ b/lib/Target/ARM/Thumb2SizeReduction.cpp
@@ -851,7 +851,7 @@ bool Thumb2SizeReduce::ReduceMBB(MachineBasicBlock &MBB) {
// If this BB loops back to itself, conservatively avoid narrowing the
// first instruction that does partial flag update.
bool IsSelfLoop = MBB.isSuccessor(&MBB);
- MachineBasicBlock::instr_iterator MII = MBB.instr_begin(), E = MBB.instr_end();
+ MachineBasicBlock::instr_iterator MII = MBB.instr_begin(),E = MBB.instr_end();
MachineBasicBlock::instr_iterator NextMII;
for (; MII != E; MII = NextMII) {
NextMII = llvm::next(MII);