mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-08-06 14:49:38 +08:00
2009-12-02 Rafael Avila de Espindola <espindola@google.com>
* incremental.cc (Incremental_inputs_entry): Remove unused argument from the get_* methods.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2009-12-02 Rafael Avila de Espindola <espindola@google.com>
|
||||||
|
|
||||||
|
* incremental.cc (Incremental_inputs_entry): Remove unused argument
|
||||||
|
from the get_* methods.
|
||||||
|
|
||||||
2009-12-02 Rafael Avila de Espindola <espindola@google.com>
|
2009-12-02 Rafael Avila de Espindola <espindola@google.com>
|
||||||
|
|
||||||
* incremental-dump.cc (main): Check that the offeset of a script is 0.
|
* incremental-dump.cc (main): Check that the offeset of a script is 0.
|
||||||
|
@ -129,27 +129,27 @@ class Incremental_inputs_entry
|
|||||||
static const int data_size = sizeof(Data_type);
|
static const int data_size = sizeof(Data_type);
|
||||||
|
|
||||||
elfcpp::Elf_Word
|
elfcpp::Elf_Word
|
||||||
get_filename_offset(elfcpp::Elf_Word v)
|
get_filename_offset()
|
||||||
{ return Convert<32, big_endian>::convert_host(this->p_->filename_offset); }
|
{ return Convert<32, big_endian>::convert_host(this->p_->filename_offset); }
|
||||||
|
|
||||||
elfcpp::Elf_Word
|
elfcpp::Elf_Word
|
||||||
get_data_offset(elfcpp::Elf_Word v)
|
get_data_offset()
|
||||||
{ return Convert<32, big_endian>::convert_host(this->p_->data_offset); }
|
{ return Convert<32, big_endian>::convert_host(this->p_->data_offset); }
|
||||||
|
|
||||||
elfcpp::Elf_Xword
|
elfcpp::Elf_Xword
|
||||||
get_timestamp_sec(elfcpp::Elf_Xword v)
|
get_timestamp_sec()
|
||||||
{ return Convert<64, big_endian>::convert_host(this->p_->timestamp_sec); }
|
{ return Convert<64, big_endian>::convert_host(this->p_->timestamp_sec); }
|
||||||
|
|
||||||
elfcpp::Elf_Word
|
elfcpp::Elf_Word
|
||||||
get_timestamp_nsec(elfcpp::Elf_Word v)
|
get_timestamp_nsec()
|
||||||
{ return Convert<32, big_endian>::convert_host(this->p_->timestamp_nsec); }
|
{ return Convert<32, big_endian>::convert_host(this->p_->timestamp_nsec); }
|
||||||
|
|
||||||
elfcpp::Elf_Word
|
elfcpp::Elf_Word
|
||||||
get_input_type(elfcpp::Elf_Word v)
|
get_input_type()
|
||||||
{ return Convert<32, big_endian>::convert_host(this->p_->input_type); }
|
{ return Convert<32, big_endian>::convert_host(this->p_->input_type); }
|
||||||
|
|
||||||
elfcpp::Elf_Word
|
elfcpp::Elf_Word
|
||||||
get_reserved(elfcpp::Elf_Word v)
|
get_reserved()
|
||||||
{ return Convert<32, big_endian>::convert_host(this->p_->reserved); }
|
{ return Convert<32, big_endian>::convert_host(this->p_->reserved); }
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
Reference in New Issue
Block a user