mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-10-11 18:06:03 +08:00
Don't pass around the target in order to define symbols; get it from
the parameters instead.
This commit is contained in:
@ -249,11 +249,10 @@ namespace gold
|
||||
{
|
||||
|
||||
void
|
||||
define_standard_symbols(Symbol_table* symtab, const Layout* layout,
|
||||
Target* target)
|
||||
define_standard_symbols(Symbol_table* symtab, const Layout* layout)
|
||||
{
|
||||
symtab->define_symbols(layout, target, in_section_count, in_section);
|
||||
symtab->define_symbols(layout, target, in_segment_count, in_segment);
|
||||
symtab->define_symbols(layout, in_section_count, in_section);
|
||||
symtab->define_symbols(layout, in_segment_count, in_segment);
|
||||
}
|
||||
|
||||
} // End namespace gold.
|
||||
|
Reference in New Issue
Block a user