diff options
author | Ian Lance Taylor <iant@google.com> | 2007-12-20 01:29:04 +0000 |
---|---|---|
committer | Ian Lance Taylor <iant@google.com> | 2007-12-20 01:29:04 +0000 |
commit | 8f00aeb8a6c1aa281ec1697f1d4fe8c7054273e7 (patch) | |
tree | 85c6ae022b67ee83b104c01deb91404be291836d /gold/merge.cc | |
parent | 007fb11822f5edae45133afb47d9e2ae5e6f5163 (diff) | |
download | gdb-8f00aeb8a6c1aa281ec1697f1d4fe8c7054273e7.zip gdb-8f00aeb8a6c1aa281ec1697f1d4fe8c7054273e7.tar.gz gdb-8f00aeb8a6c1aa281ec1697f1d4fe8c7054273e7.tar.bz2 |
Make functions on hot path inline. Remove a mistaken virtual
declaration.
Diffstat (limited to 'gold/merge.cc')
-rw-r--r-- | gold/merge.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gold/merge.cc b/gold/merge.cc index 01f2a9e..abe625e 100644 --- a/gold/merge.cc +++ b/gold/merge.cc @@ -234,7 +234,7 @@ Object_merge_map::add_mapping(const Merge_map* merge_map, unsigned int shndx, // Get the output offset for an input address. -bool +inline bool Object_merge_map::get_output_offset(const Merge_map* merge_map, unsigned int shndx, section_offset_type input_offset, @@ -300,7 +300,7 @@ Merge_map::add_mapping(Relobj* object, unsigned int shndx, // *OUTPUT_OFFSET to the offset in the output section. This returns // true if the mapping is known, false otherwise. -bool +inline bool Merge_map::get_output_offset(const Relobj* object, unsigned int shndx, section_offset_type offset, section_offset_type* output_offset) const |