* freebsd.h (Target_freebsd::do_adjust_elf_header): Use size

instead of 32.
This commit is contained in:
Ian Lance Taylor 2009-07-01 16:21:36 +00:00
parent d70e31dd87
commit c9d707578e
2 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2009-07-01 Ian Lance Taylor <ian@airs.com>
* freebsd.h (Target_freebsd::do_adjust_elf_header): Use size
instead of 32.
2009-06-24 Ian Lance Taylor <iant@google.com>
PR 10156

View File

@ -68,15 +68,15 @@ Target_freebsd<size, big_endian>::do_adjust_elf_header(unsigned char* view,
{
if (this->osabi_ != elfcpp::ELFOSABI_NONE)
{
gold_assert(len == elfcpp::Elf_sizes<32>::ehdr_size);
gold_assert(len == elfcpp::Elf_sizes<size>::ehdr_size);
elfcpp::Ehdr<32, false> ehdr(view);
elfcpp::Ehdr<size, false> ehdr(view);
unsigned char e_ident[elfcpp::EI_NIDENT];
memcpy(e_ident, ehdr.get_e_ident(), elfcpp::EI_NIDENT);
e_ident[elfcpp::EI_OSABI] = this->osabi_;
elfcpp::Ehdr_write<32, false> oehdr(view);
elfcpp::Ehdr_write<size, false> oehdr(view);
oehdr.put_e_ident(e_ident);
}
}