aboutsummaryrefslogtreecommitdiff
path: root/gold/object.h
diff options
context:
space:
mode:
authorCary Coutant <ccoutant@google.com>2010-06-10 17:20:27 +0000
committerCary Coutant <ccoutant@google.com>2010-06-10 17:20:27 +0000
commitf3a2388fc96c63c0233cdc3449ea61cf36e4975b (patch)
treed073b85cc10872fe8a3f3a93207f829932255370 /gold/object.h
parent7530c4809276954eebc6cfa9a41452d15da31bdb (diff)
downloadfsf-binutils-gdb-f3a2388fc96c63c0233cdc3449ea61cf36e4975b.zip
fsf-binutils-gdb-f3a2388fc96c63c0233cdc3449ea61cf36e4975b.tar.gz
fsf-binutils-gdb-f3a2388fc96c63c0233cdc3449ea61cf36e4975b.tar.bz2
* object.cc (Sized_relobj::do_layout): Defer layout for reloc sections.
(Sized_relobj::do_layout_deferred_sections): Do layout for deferred reloc sections. * object.h (Sized_relobj::deferred_layout_relocs_): New data member. PR 11683 * symtab.h (Symbol::is_placeholder): New member function. * target-reloc.h (relocate_section): Check for placeholder symbols. * testsuite/Makefile.am (plugin_test_8): New test. (plugin_test_9): New test. * testsuite/Makefile.in: Regenerate.
Diffstat (limited to 'gold/object.h')
-rw-r--r--gold/object.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/gold/object.h b/gold/object.h
index 02747a7..bc2b558 100644
--- a/gold/object.h
+++ b/gold/object.h
@@ -2022,6 +2022,8 @@ class Sized_relobj : public Relobj
unsigned int discarded_eh_frame_shndx_;
// The list of sections whose layout was deferred.
std::vector<Deferred_layout> deferred_layout_;
+ // The list of relocation sections whose layout was deferred.
+ std::vector<Deferred_layout> deferred_layout_relocs_;
};
// A class to manage the list of all objects.