summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDavid Blaikie <dblaikie@gmail.com>2013-06-19 21:42:05 +0000
committerDavid Blaikie <dblaikie@gmail.com>2013-06-19 21:42:05 +0000
commit0812304ad8c8eded9785acff3194e3f5058e5dbf (patch)
tree487a2e03e000ec66f9c716fd5a18dd906c5ba645 /lib
parent3df7d2f70bb316ebeec8a8c862b3da5386fbb145 (diff)
downloadllvm-0812304ad8c8eded9785acff3194e3f5058e5dbf.tar.gz
llvm-0812304ad8c8eded9785acff3194e3f5058e5dbf.tar.bz2
llvm-0812304ad8c8eded9785acff3194e3f5058e5dbf.tar.xz
Spell correct (s/begining/beginning/)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@184362 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/DebugInfo/DWARFDebugLoc.cpp6
1 files changed, 3 insertions, 3 deletions
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<Entry>::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<unsigned char>::const_iterator I3 = I2->Loc.begin(), E3 = I2->Loc.end(); I3 != E3; ++I3) {
OS << format("%2.2x ", *I3);
}