summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lldb/include/lldb/Symbol/SymbolVendor.h2
-rw-r--r--lldb/source/Plugins/SymbolVendor/MacOSX/SymbolVendorMacOSX.cpp4
-rw-r--r--lldb/source/Symbol/SymbolVendor.cpp4
3 files changed, 5 insertions, 5 deletions
diff --git a/lldb/include/lldb/Symbol/SymbolVendor.h b/lldb/include/lldb/Symbol/SymbolVendor.h
index 3eec72080b5..1b804d6300b 100644
--- a/lldb/include/lldb/Symbol/SymbolVendor.h
+++ b/lldb/include/lldb/Symbol/SymbolVendor.h
@@ -58,7 +58,7 @@ public:
~SymbolVendor();
void
- AddSymbolFileRepresendation(const lldb::ObjectFileSP &objfile_sp);
+ AddSymbolFileRepresentation(const lldb::ObjectFileSP &objfile_sp);
virtual void
Dump(Stream *s);
diff --git a/lldb/source/Plugins/SymbolVendor/MacOSX/SymbolVendorMacOSX.cpp b/lldb/source/Plugins/SymbolVendor/MacOSX/SymbolVendorMacOSX.cpp
index 9b112205d61..c4f1bebad14 100644
--- a/lldb/source/Plugins/SymbolVendor/MacOSX/SymbolVendorMacOSX.cpp
+++ b/lldb/source/Plugins/SymbolVendor/MacOSX/SymbolVendorMacOSX.cpp
@@ -152,7 +152,7 @@ SymbolVendorMacOSX::CreateInstance(Module* module)
if (UUIDsMatch(module, dsym_objfile_sp.get()))
{
ReplaceDSYMSectionsWithExecutableSections (obj_file, dsym_objfile_sp.get());
- symbol_vendor->AddSymbolFileRepresendation(dsym_objfile_sp);
+ symbol_vendor->AddSymbolFileRepresentation(dsym_objfile_sp);
return symbol_vendor;
}
}
@@ -161,7 +161,7 @@ SymbolVendorMacOSX::CreateInstance(Module* module)
// Just create our symbol vendor using the current objfile as this is either
// an executable with no dSYM (that we could locate), an executable with
// a dSYM that has a UUID that doesn't match.
- symbol_vendor->AddSymbolFileRepresendation(obj_file->GetSP());
+ symbol_vendor->AddSymbolFileRepresentation(obj_file->GetSP());
}
}
return symbol_vendor;
diff --git a/lldb/source/Symbol/SymbolVendor.cpp b/lldb/source/Symbol/SymbolVendor.cpp
index 7711923222a..3a4875641d0 100644
--- a/lldb/source/Symbol/SymbolVendor.cpp
+++ b/lldb/source/Symbol/SymbolVendor.cpp
@@ -58,7 +58,7 @@ SymbolVendor::FindPlugin (Module* module)
{
ObjectFile *objfile = module->GetObjectFile();
if (objfile)
- instance_ap->AddSymbolFileRepresendation(objfile->GetSP());
+ instance_ap->AddSymbolFileRepresentation(objfile->GetSP());
}
return instance_ap.release();
}
@@ -86,7 +86,7 @@ SymbolVendor::~SymbolVendor()
// Add a represantion given an object file.
//----------------------------------------------------------------------
void
-SymbolVendor::AddSymbolFileRepresendation(const ObjectFileSP &objfile_sp)
+SymbolVendor::AddSymbolFileRepresentation(const ObjectFileSP &objfile_sp)
{
Mutex::Locker locker(m_mutex);
if (objfile_sp)
OpenPOWER on IntegriCloud