summaryrefslogtreecommitdiffstats
path: root/llvm/lib/DebugInfo/DWARFDebugLoc.cpp
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
commitb9a18708cc620ab8689ede03057a6343a38eec17 (patch)
tree4b313850c7a89d63d7b357d447e06b41daa387b7 /llvm/lib/DebugInfo/DWARFDebugLoc.cpp
parent18e73508c4e21a2ce8c2bbd22baf35e86d33279c (diff)
downloadbcm5719-llvm-b9a18708cc620ab8689ede03057a6343a38eec17.tar.gz
bcm5719-llvm-b9a18708cc620ab8689ede03057a6343a38eec17.zip
Spell correct (s/begining/beginning/)
llvm-svn: 184362
Diffstat (limited to 'llvm/lib/DebugInfo/DWARFDebugLoc.cpp')
-rw-r--r--llvm/lib/DebugInfo/DWARFDebugLoc.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/DebugInfo/DWARFDebugLoc.cpp b/llvm/lib/DebugInfo/DWARFDebugLoc.cpp
index 46de4892049..3895ffa8d7a 100644
--- a/llvm/lib/DebugInfo/DWARFDebugLoc.cpp
+++ b/llvm/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);
}
OpenPOWER on IntegriCloud