diff options
author | Ian Lance Taylor <iant@google.com> | 2007-12-18 00:48:04 +0000 |
---|---|---|
committer | Ian Lance Taylor <iant@google.com> | 2007-12-18 00:48:04 +0000 |
commit | 8383303e0acce6e4332e2a2097b832e2deb880ec (patch) | |
tree | 6ccbc99caa33528817ffef492de98dfd19262563 /gold/symtab.cc | |
parent | 3d372cd7a1b4639eed8fc062829a97b67a1342bf (diff) | |
download | gdb-8383303e0acce6e4332e2a2097b832e2deb880ec.zip gdb-8383303e0acce6e4332e2a2097b832e2deb880ec.tar.gz gdb-8383303e0acce6e4332e2a2097b832e2deb880ec.tar.bz2 |
Add section_size_type and section_offset_type, use them to replace a
lot of instances of off_t.
Diffstat (limited to 'gold/symtab.cc')
-rw-r--r-- | gold/symtab.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gold/symtab.cc b/gold/symtab.cc index 7868c39..2cab980 100644 --- a/gold/symtab.cc +++ b/gold/symtab.cc @@ -1497,7 +1497,7 @@ Symbol_table::sized_finalize(unsigned index, off_t off, Stringpool* pool) else { Relobj* relobj = static_cast<Relobj*>(symobj); - off_t secoff; + section_offset_type secoff; Output_section* os = relobj->output_section(shndx, &secoff); if (os == NULL) @@ -1714,7 +1714,7 @@ Symbol_table::sized_write_globals(const Input_objects* input_objects, else { Relobj* relobj = static_cast<Relobj*>(symobj); - off_t secoff; + section_offset_type secoff; Output_section* os = relobj->output_section(in_shndx, &secoff); gold_assert(os != NULL); @@ -2026,7 +2026,7 @@ Warnings::note_warnings(Symbol_table* symtab, const Task* task) { Task_lock_obj<Object> tl(task, p->second.object); const unsigned char* c; - off_t len; + section_size_type len; c = p->second.object->section_contents(p->second.shndx, &len, false); p->second.set_text(reinterpret_cast<const char*>(c), len); |