[llvm-commits] [llvm] r106894 - /llvm/trunk/lib/CodeGen/IfConversion.cpp

Jim Grosbach grosbach at apple.com
Fri Jun 25 15:02:28 PDT 2010


Author: grosbach
Date: Fri Jun 25 17:02:28 2010
New Revision: 106894

URL: http://llvm.org/viewvc/llvm-project?rev=106894&view=rev
Log:
80 column and typo fix

Modified:
    llvm/trunk/lib/CodeGen/IfConversion.cpp

Modified: llvm/trunk/lib/CodeGen/IfConversion.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/IfConversion.cpp?rev=106894&r1=106893&r2=106894&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/IfConversion.cpp (original)
+++ llvm/trunk/lib/CodeGen/IfConversion.cpp Fri Jun 25 17:02:28 2010
@@ -951,7 +951,7 @@
       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 @@
   // 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);





More information about the llvm-commits mailing list