diff options
author | Alan Modra <amodra@gmail.com> | 2014-06-27 10:41:31 +0930 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2014-06-27 10:42:28 +0930 |
commit | 7b5490456670ef187c1b7c07ba2e9e09512a6d70 (patch) | |
tree | 83a027ceac04f00e35eafa69f24408849c8fd911 /gold/symtab.cc | |
parent | e2ca13570cb87f5257be8a19aa0bdc6e8b13c272 (diff) | |
download | binutils-7b5490456670ef187c1b7c07ba2e9e09512a6d70.zip binutils-7b5490456670ef187c1b7c07ba2e9e09512a6d70.tar.gz binutils-7b5490456670ef187c1b7c07ba2e9e09512a6d70.tar.bz2 |
Fix undefined symbol errors from mips.cc
* symtab.cc (Symbol::should_add_dynsym_entry): Don't make inline.
Diffstat (limited to 'gold/symtab.cc')
-rw-r--r-- | gold/symtab.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gold/symtab.cc b/gold/symtab.cc index 4e8afb1..b329bb6 100644 --- a/gold/symtab.cc +++ b/gold/symtab.cc @@ -334,7 +334,7 @@ Sized_symbol<size>::allocate_common(Output_data* od, Value_type value) // Return true if this symbol should be added to the dynamic symbol // table. -inline bool +bool Symbol::should_add_dynsym_entry(Symbol_table* symtab) const { // If the symbol is only present on plugin files, the plugin decided we |