diff options
Diffstat (limited to 'gold/plugin.h')
-rw-r--r-- | gold/plugin.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/gold/plugin.h b/gold/plugin.h index f926879..3e094d7 100644 --- a/gold/plugin.h +++ b/gold/plugin.h @@ -433,6 +433,16 @@ class Pluginobj : public Object filesize() { return this->filesize_; } + // Return the word size of the object file. + int + elfsize() const + { gold_unreachable(); } + + // Return TRUE if this is a big-endian object file. + bool + is_big_endian() const + { gold_unreachable(); } + protected: // Return TRUE if this is an object claimed by a plugin. virtual Pluginobj* |