summaryrefslogtreecommitdiff
path: root/lib/CodeGen/IfConversion.cpp
diff options
context:
space:
mode:
authorJim Grosbach <grosbach@apple.com>2010-06-25 22:02:28 +0000
committerJim Grosbach <grosbach@apple.com>2010-06-25 22:02:28 +0000
commit135ec50ce26b4bb9aee305f5e861d2348969aa31 (patch)
treeba34a3aa22c6554c6373f43e65496e4bfeb7ff4d /lib/CodeGen/IfConversion.cpp
parent1784d160e4efa75782884d451d0788b9457e67dc (diff)
downloadllvm-135ec50ce26b4bb9aee305f5e861d2348969aa31.tar.gz
llvm-135ec50ce26b4bb9aee305f5e861d2348969aa31.tar.bz2
llvm-135ec50ce26b4bb9aee305f5e861d2348969aa31.tar.xz
80 column and typo fix
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@106894 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/IfConversion.cpp')
-rw-r--r--lib/CodeGen/IfConversion.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/IfConversion.cpp b/lib/CodeGen/IfConversion.cpp
index 8d49212bf2..0b40d8e038 100644
--- a/lib/CodeGen/IfConversion.cpp
+++ b/lib/CodeGen/IfConversion.cpp
@@ -951,7 +951,7 @@ static void UpdatePredRedefs(MachineInstr *MI, SmallSet<unsigned,4> &Redefs,
if (AddImpUse)
// Treat predicated update as read + write.
MI->addOperand(MachineOperand::CreateReg(Reg, false/*IsDef*/,
- true/*IsImp*/,false/*IsKill*/));
+ true/*IsImp*/,false/*IsKill*/));
} else {
Redefs.insert(Reg);
for (const unsigned *SR = TRI->getSubRegisters(Reg); *SR; ++SR)
@@ -1205,7 +1205,7 @@ bool IfConverter::IfConvertDiamond(BBInfo &BBI, IfcvtKind Kind,
// Remove the conditional branch from entry to the blocks.
BBI.NonPredSize -= TII->RemoveBranch(*BBI.BB);
- // Initialize liveins to the first BB. These are potentiall redefined by
+ // Initialize liveins to the first BB. These are potentially redefined by
// predicated instructions.
SmallSet<unsigned, 4> Redefs;
InitPredRedefs(BBI1->BB, Redefs, TRI);