aboutsummaryrefslogtreecommitdiff
path: root/gold
diff options
context:
space:
mode:
authorDoug Kwan <dougkwan@google.com>2010-10-02 09:35:20 +0000
committerDoug Kwan <dougkwan@google.com>2010-10-02 09:35:20 +0000
commita9bfd952d1747c18a39f1125d2d56b2b61f45378 (patch)
tree376d63ce1e59b6291bed1cf46b6249dff42d49df /gold
parent9ce00134f4a11875b88cbda116e1be16d8aa06e2 (diff)
downloadfsf-binutils-gdb-a9bfd952d1747c18a39f1125d2d56b2b61f45378.zip
fsf-binutils-gdb-a9bfd952d1747c18a39f1125d2d56b2b61f45378.tar.gz
fsf-binutils-gdb-a9bfd952d1747c18a39f1125d2d56b2b61f45378.tar.bz2
2010-10-02 Doug Kwan <dougkwan@google.com>
* symtab.cc (Symbol_table::Symbol_table_hash::operator()): Move defintion to symtab.h * symtab.h (Symbol_table::Symbol_table_hash::operator()): Change declaration to defintion.
Diffstat (limited to 'gold')
-rw-r--r--gold/ChangeLog7
-rw-r--r--gold/symtab.cc8
-rw-r--r--gold/symtab.h8
3 files changed, 13 insertions, 10 deletions
diff --git a/gold/ChangeLog b/gold/ChangeLog
index d03aca4..03c5fc3 100644
--- a/gold/ChangeLog
+++ b/gold/ChangeLog
@@ -1,3 +1,10 @@
+2010-10-02 Doug Kwan <dougkwan@google.com>
+
+ * symtab.cc (Symbol_table::Symbol_table_hash::operator()): Move
+ defintion to symtab.h
+ * symtab.h (Symbol_table::Symbol_table_hash::operator()): Change
+ declaration to defintion.
+
2010-10-01 Nick Clifton <nickc@redhat.com>
* expression.cc (eval): Replace dummy argument with NULL.
diff --git a/gold/symtab.cc b/gold/symtab.cc
index d8cda2d..75ed7f6 100644
--- a/gold/symtab.cc
+++ b/gold/symtab.cc
@@ -501,14 +501,6 @@ Symbol_table::~Symbol_table()
{
}
-// The hash function. The key values are Stringpool keys.
-
-inline size_t
-Symbol_table::Symbol_table_hash::operator()(const Symbol_table_key& key) const
-{
- return key.first ^ key.second;
-}
-
// The symbol table key equality function. This is called with
// Stringpool keys.
diff --git a/gold/symtab.h b/gold/symtab.h
index e355b2a..6542edb 100644
--- a/gold/symtab.h
+++ b/gold/symtab.h
@@ -1545,10 +1545,14 @@ class Symbol_table
typedef std::pair<Stringpool::Key, Stringpool::Key> Symbol_table_key;
+ // The hash function. The key values are Stringpool keys.
struct Symbol_table_hash
{
- size_t
- operator()(const Symbol_table_key&) const;
+ inline size_t
+ operator()(const Symbol_table_key& key) const
+ {
+ return key.first ^ key.second;
+ }
};
struct Symbol_table_eq