[llvm-commits] [llvm] r152841 - /llvm/trunk/lib/CodeGen/LiveDebugVariables.cpp

Eric Christopher echristo at apple.com
Thu Mar 15 14:33:35 PDT 2012


Author: echristo
Date: Thu Mar 15 16:33:35 2012
New Revision: 152841

URL: http://llvm.org/viewvc/llvm-project?rev=152841&view=rev
Log:
Typo.

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

Modified: llvm/trunk/lib/CodeGen/LiveDebugVariables.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/LiveDebugVariables.cpp?rev=152841&r1=152840&r2=152841&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/LiveDebugVariables.cpp (original)
+++ llvm/trunk/lib/CodeGen/LiveDebugVariables.cpp Thu Mar 15 16:33:35 2012
@@ -841,7 +841,7 @@
 UserValue::splitRegister(unsigned OldReg, ArrayRef<LiveInterval*> NewRegs) {
   bool DidChange = false;
   // Split locations referring to OldReg. Iterate backwards so splitLocation can
-  // safely erase unuused locations.
+  // safely erase unused locations.
   for (unsigned i = locations.size(); i ; --i) {
     unsigned LocNo = i-1;
     const MachineOperand *Loc = &locations[LocNo];





More information about the llvm-commits mailing list