diff options
author | Devang Patel <dpatel@apple.com> | 2011-07-14 00:04:53 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2011-07-14 00:04:53 +0000 |
commit | a9195bcff0aa8942a9d12eb3591a462d051c4749 (patch) | |
tree | 6bf29a5dd7a208a0f808d320ec512fdd6d745191 /llvm/lib | |
parent | 2cce0d103d3ef6fc1c4e20d0adbec6d9c4f763be (diff) | |
download | bcm5719-llvm-a9195bcff0aa8942a9d12eb3591a462d051c4749.tar.gz bcm5719-llvm-a9195bcff0aa8942a9d12eb3591a462d051c4749.zip |
Fix typo in DEBUG message.
llvm-svn: 135111
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp index f6cebb39f57..dcbd6f209a0 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp @@ -1743,10 +1743,10 @@ bool DwarfDebug::extractScopeInformation() { // 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, |