mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-24 04:29:49 +00:00
PR 11019
* object.cc: Instantiate Xindex::initialize_symtab_xindex and Xindex::read_symtab_xindex.
This commit is contained in:
parent
bb0d3eb035
commit
9d3b86f6f9
@ -1,3 +1,10 @@
|
||||
2010-01-07 Dmitry Gorbachev <d.g.gorbachev@gmail.com>
|
||||
Ian Lance Taylor <iant@google.com>
|
||||
|
||||
PR 11019
|
||||
* object.cc: Instantiate Xindex::initialize_symtab_xindex and
|
||||
Xindex::read_symtab_xindex.
|
||||
|
||||
2010-01-07 Doug Kwan <dougkwan@google.com>
|
||||
|
||||
* arm.cc (Insn_template::Type): New enum value THUMB16_SPECIAL_TYPE.
|
||||
|
@ -2524,4 +2524,48 @@ template
|
||||
struct Relocate_info<64, true>;
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_TARGET_32_LITTLE
|
||||
template
|
||||
void
|
||||
Xindex::initialize_symtab_xindex<32, false>(Object*, unsigned int);
|
||||
|
||||
template
|
||||
void
|
||||
Xindex::read_symtab_xindex<32, false>(Object*, unsigned int,
|
||||
const unsigned char*);
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_TARGET_32_BIG
|
||||
template
|
||||
void
|
||||
Xindex::initialize_symtab_xindex<32, true>(Object*, unsigned int);
|
||||
|
||||
template
|
||||
void
|
||||
Xindex::read_symtab_xindex<32, true>(Object*, unsigned int,
|
||||
const unsigned char*);
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_TARGET_64_LITTLE
|
||||
template
|
||||
void
|
||||
Xindex::initialize_symtab_xindex<64, false>(Object*, unsigned int);
|
||||
|
||||
template
|
||||
void
|
||||
Xindex::read_symtab_xindex<64, false>(Object*, unsigned int,
|
||||
const unsigned char*);
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_TARGET_64_BIG
|
||||
template
|
||||
void
|
||||
Xindex::initialize_symtab_xindex<64, true>(Object*, unsigned int);
|
||||
|
||||
template
|
||||
void
|
||||
Xindex::read_symtab_xindex<64, true>(Object*, unsigned int,
|
||||
const unsigned char*);
|
||||
#endif
|
||||
|
||||
} // End namespace gold.
|
||||
|
Loading…
Reference in New Issue
Block a user