summaryrefslogtreecommitdiff
path: root/lib/CodeGen/BranchFolding.cpp
diff options
context:
space:
mode:
authorAndrew Trick <atrick@apple.com>2012-02-08 21:22:43 +0000
committerAndrew Trick <atrick@apple.com>2012-02-08 21:22:43 +0000
commit1df91b0e54bc62f8fc7a06a4f75220e40aa2dfe0 (patch)
tree86b8e3977706898a8080293eaddde7c21162c7fd /lib/CodeGen/BranchFolding.cpp
parentffea03f2165c5a4fda672495bf853aa2d8c7d1b5 (diff)
downloadllvm-1df91b0e54bc62f8fc7a06a4f75220e40aa2dfe0.tar.gz
llvm-1df91b0e54bc62f8fc7a06a4f75220e40aa2dfe0.tar.bz2
llvm-1df91b0e54bc62f8fc7a06a4f75220e40aa2dfe0.tar.xz
whitespace
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@150094 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/BranchFolding.cpp')
-rw-r--r--lib/CodeGen/BranchFolding.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/BranchFolding.cpp b/lib/CodeGen/BranchFolding.cpp
index 8e59411c13..af37742c4b 100644
--- a/lib/CodeGen/BranchFolding.cpp
+++ b/lib/CodeGen/BranchFolding.cpp
@@ -208,7 +208,7 @@ bool BranchFolder::OptimizeFunction(MachineFunction &MF,
delete RS;
return MadeChange;
}
-
+
// Walk the function to find jump tables that are live.
BitVector JTIsLive(JTI->getJumpTables().size());
for (MachineFunction::iterator BB = MF.begin(), E = MF.end();
@@ -1095,7 +1095,7 @@ ReoptimizeBlock:
MachineBasicBlock::iterator PrevBBIter = PrevBB.end();
--PrevBBIter;
MachineBasicBlock::iterator MBBIter = MBB->begin();
- // Check if DBG_VALUE at the end of PrevBB is identical to the
+ // Check if DBG_VALUE at the end of PrevBB is identical to the
// DBG_VALUE at the beginning of MBB.
while (PrevBBIter != PrevBB.begin() && MBBIter != MBB->end()
&& PrevBBIter->isDebugValue() && MBBIter->isDebugValue()) {