Fix comment - Module::PrepareForFunctionNameLookup should be Module::LookupInfo:...
authorDawn Perchik <dawn@burble.org>
Fri, 30 Sep 2016 20:38:33 +0000 (20:38 +0000)
committerDawn Perchik <dawn@burble.org>
Fri, 30 Sep 2016 20:38:33 +0000 (20:38 +0000)
llvm-svn: 282941

lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp
lldb/source/Symbol/Symtab.cpp

index 36f3162..d82b3d4 100644 (file)
@@ -2395,7 +2395,7 @@ SymbolFileDWARF::FindFunctions(const ConstString &name,
                      name.AsCString());
 
   // eFunctionNameTypeAuto should be pre-resolved by a call to
-  // Module::PrepareForFunctionNameLookup()
+  // Module::LookupInfo::LookupInfo()
   assert((name_type_mask & eFunctionNameTypeAuto) == 0);
 
   Log *log(LogChannelDWARF::GetLogIfAll(DWARF_LOG_LOOKUPS));
index 8461974..5b16ba5 100644 (file)
@@ -1069,7 +1069,7 @@ size_t Symtab::FindFunctionSymbols(const ConstString &name,
   const char *name_cstr = name.GetCString();
 
   // eFunctionNameTypeAuto should be pre-resolved by a call to
-  // Module::PrepareForFunctionNameLookup()
+  // Module::LookupInfo::LookupInfo()
   assert((name_type_mask & eFunctionNameTypeAuto) == 0);
 
   if (name_type_mask & (eFunctionNameTypeBase | eFunctionNameTypeFull)) {