Correct typo in method name (AddSymbolFileRepresendation...)

llvm-svn: 145884
This commit is contained in:
Jim Ingham 2011-12-06 01:07:22 +00:00
parent 2608157f79
commit 7d1c115d2e
3 changed files with 5 additions and 5 deletions

View File

@ -58,7 +58,7 @@ public:
~SymbolVendor();
void
AddSymbolFileRepresendation(const lldb::ObjectFileSP &objfile_sp);
AddSymbolFileRepresentation(const lldb::ObjectFileSP &objfile_sp);
virtual void
Dump(Stream *s);

View File

@ -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;

View File

@ -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)