From 0812304ad8c8eded9785acff3194e3f5058e5dbf Mon Sep 17 00:00:00 2001 From: David Blaikie Date: Wed, 19 Jun 2013 21:42:05 +0000 Subject: Spell correct (s/begining/beginning/) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@184362 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/DebugInfo/DWARFDebugLoc.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib') diff --git a/lib/DebugInfo/DWARFDebugLoc.cpp b/lib/DebugInfo/DWARFDebugLoc.cpp index 46de489204..3895ffa8d7 100644 --- a/lib/DebugInfo/DWARFDebugLoc.cpp +++ b/lib/DebugInfo/DWARFDebugLoc.cpp @@ -21,11 +21,11 @@ void DWARFDebugLoc::dump(raw_ostream &OS) const { for (SmallVectorImpl::const_iterator I2 = I->Entries.begin(), E2 = I->Entries.end(); I2 != E2; ++I2) { if (I2 != I->Entries.begin()) OS.indent(Indent); - OS << "Begining address offset: " << format("0x%016" PRIx64, I2->Begin) + OS << "Beginning address offset: " << format("0x%016" PRIx64, I2->Begin) << '\n'; - OS.indent(Indent) << " Ending address offset: " + OS.indent(Indent) << " Ending address offset: " << format("0x%016" PRIx64, I2->End) << '\n'; - OS.indent(Indent) << " Location description: "; + OS.indent(Indent) << " Location description: "; for (SmallVectorImpl::const_iterator I3 = I2->Loc.begin(), E3 = I2->Loc.end(); I3 != E3; ++I3) { OS << format("%2.2x ", *I3); } -- cgit v1.2.3