[llvm-commits] [llvm] r135111 - /llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.cpp

Devang Patel dpatel at apple.com
Wed Jul 13 17:04:54 PDT 2011


Author: dpatel
Date: Wed Jul 13 19:04:53 2011
New Revision: 135111

URL: http://llvm.org/viewvc/llvm-project?rev=135111&view=rev
Log:
Fix typo in DEBUG message.

Modified:
    llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.cpp

Modified: llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.cpp?rev=135111&r1=135110&r2=135111&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.cpp (original)
+++ llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.cpp Wed Jul 13 19:04:53 2011
@@ -1743,10 +1743,10 @@
         // If we have alread seen a beginning of a instruction range and
         // current instruction scope does not match scope of first instruction
         // in this range then create a new instruction range.
-        DEBUG(dbgs() << "Createing new instruction range :\n");
+        DEBUG(dbgs() << "Creating new instruction range :\n");
         DEBUG(dbgs() << "Begin Range at " << *RangeBeginMI);
         DEBUG(dbgs() << "End Range at " << *PrevMI);
-        DEBUG(dbgs() << "New Range starting at " << *MInsn);
+        DEBUG(dbgs() << "Next Range starting at " << *MInsn);
         DEBUG(dbgs() << "------------------------\n");
         DbgRange R(RangeBeginMI, PrevMI);
         MI2ScopeMap[RangeBeginMI] = getOrCreateDbgScope(PrevScope,





More information about the llvm-commits mailing list