diff options
author | Ian Lance Taylor <iant@google.com> | 2006-12-06 00:02:36 +0000 |
---|---|---|
committer | Ian Lance Taylor <iant@google.com> | 2006-12-06 00:02:36 +0000 |
commit | 14b317405813ed4aaf59235b5bfaf4f8decf1ad0 (patch) | |
tree | b86d42fb9224a280f365b1bc2ab2282cc08cdc42 /gold/target.h | |
parent | f8f183f633bed2957d8388ba9594d249d5b0ebb9 (diff) | |
download | gdb-14b317405813ed4aaf59235b5bfaf4f8decf1ad0.zip gdb-14b317405813ed4aaf59235b5bfaf4f8decf1ad0.tar.gz gdb-14b317405813ed4aaf59235b5bfaf4f8decf1ad0.tar.bz2 |
Generate version information.
Diffstat (limited to 'gold/target.h')
-rw-r--r-- | gold/target.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gold/target.h b/gold/target.h index 42bed9e..9181a93 100644 --- a/gold/target.h +++ b/gold/target.h @@ -145,15 +145,17 @@ class Sized_target : public Target // symbol table. This will only be called if has_make_symbol() // returns true. virtual Sized_symbol<size>* - make_symbol() + make_symbol() const { gold_unreachable(); } // Resolve a symbol for the target. This should be overridden by a // target which needs to take special action. TO is the // pre-existing symbol. SYM is the new symbol, seen in OBJECT. - // This will only be called if has_resolve() returns true. + // VERSION is the version of SYM. This will only be called if + // has_resolve() returns true. virtual void - resolve(Symbol*, const elfcpp::Sym<size, big_endian>&, Object*) + resolve(Symbol*, const elfcpp::Sym<size, big_endian>&, Object*, + const char*) { gold_unreachable(); } // Scan the relocs for a section, and record any information |