diff options
author | Ian Lance Taylor <iant@google.com> | 2006-11-03 18:38:43 +0000 |
---|---|---|
committer | Ian Lance Taylor <iant@google.com> | 2006-11-03 18:38:43 +0000 |
commit | 593f47df457d5e059f49b1ce62d1b51d4a7cc3e4 (patch) | |
tree | 1f5b2070678b01fd88b1818246356679bd078d59 /gold/object.h | |
parent | ead1e4244a55707685d105c662a9a1faf5d122fe (diff) | |
download | gdb-593f47df457d5e059f49b1ce62d1b51d4a7cc3e4.zip gdb-593f47df457d5e059f49b1ce62d1b51d4a7cc3e4.tar.gz gdb-593f47df457d5e059f49b1ce62d1b51d4a7cc3e4.tar.bz2 |
gcc 3.2.2 portability hacks.
Diffstat (limited to 'gold/object.h')
-rw-r--r-- | gold/object.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gold/object.h b/gold/object.h index 5e57039..9b23de9 100644 --- a/gold/object.h +++ b/gold/object.h @@ -392,8 +392,9 @@ class Sized_object : public Object Sized_target<size, big_endian>* sized_target() { - return this->Object::sized_target SELECT_SIZE_ENDIAN_NAME ( - SELECT_SIZE_ENDIAN_ONLY(size, big_endian)); + return this->Object::sized_target + SELECT_SIZE_ENDIAN_NAME(size, big_endian) ( + SELECT_SIZE_ENDIAN_ONLY(size, big_endian)); } private: |