diff options
Diffstat (limited to 'gold/object.h')
-rw-r--r-- | gold/object.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gold/object.h b/gold/object.h index 754b1d2..cf45ec5 100644 --- a/gold/object.h +++ b/gold/object.h @@ -2202,6 +2202,10 @@ class Sized_relobj_file : public Sized_relobj<size, big_endian> Symbol_value<size>* lv_out, const Symbol_table* symtab); + // Return true if the layout for this object was deferred. + bool is_deferred_layout() const + { return this->is_deferred_layout_; } + protected: typedef typename Sized_relobj<size, big_endian>::Output_sections Output_sections; @@ -2740,6 +2744,9 @@ class Sized_relobj_file : public Sized_relobj<size, big_endian> // If this object has a GNU style .eh_frame section that is discarded in // output, record the index here. Otherwise it is -1U. unsigned int discarded_eh_frame_shndx_; + // True if the layout of this object was deferred, waiting for plugin + // replacement files. + bool is_deferred_layout_; // The list of sections whose layout was deferred. std::vector<Deferred_layout> deferred_layout_; // The list of relocation sections whose layout was deferred. |