forked from OSchip/llvm-project
[DWARF] Remove an unused arg to SymbolFileDWARF::ParseChildParameters.
Test Plan: Build LLDB Reviewers: clayborg Subscribers: lldb-commits Differential Revision: http://reviews.llvm.org/D8621 llvm-svn: 233230
This commit is contained in:
parent
041ceb7d57
commit
71e080646e
|
@ -4303,7 +4303,6 @@ SymbolFileDWARF::ParseChildParameters (const SymbolContext& sc,
|
|||
bool skip_artificial,
|
||||
bool &is_static,
|
||||
bool &is_variadic,
|
||||
TypeList* type_list,
|
||||
std::vector<ClangASTType>& function_param_types,
|
||||
std::vector<clang::ParmVarDecl*>& function_param_decls,
|
||||
unsigned &type_quals) // ,
|
||||
|
@ -6529,7 +6528,6 @@ SymbolFileDWARF::ParseType (const SymbolContext& sc, DWARFCompileUnit* dwarf_cu,
|
|||
skip_artificial,
|
||||
is_static,
|
||||
is_variadic,
|
||||
type_list,
|
||||
function_param_types,
|
||||
function_param_decls,
|
||||
type_quals);
|
||||
|
|
|
@ -359,7 +359,6 @@ protected:
|
|||
bool skip_artificial,
|
||||
bool &is_static,
|
||||
bool &is_variadic,
|
||||
lldb_private::TypeList* type_list,
|
||||
std::vector<lldb_private::ClangASTType>& function_args,
|
||||
std::vector<clang::ParmVarDecl*>& function_param_decls,
|
||||
unsigned &type_quals);
|
||||
|
|
Loading…
Reference in New Issue