diff options
author | Roland McGrath <roland@redhat.com> | 2005-11-19 07:40:29 +0000 |
---|---|---|
committer | Roland McGrath <roland@redhat.com> | 2005-11-19 07:40:29 +0000 |
commit | f47ba53e758a954c72f820e169079aa767d9f96c (patch) | |
tree | b50fb909ecc8bbce8b7a5f76ce01eb41e2b40db8 /backends/i386_init.c | |
parent | 9365d2c3439c524c9ca0b9d70f0a559d392a7e05 (diff) | |
download | android_external_elfutils-f47ba53e758a954c72f820e169079aa767d9f96c.tar.gz android_external_elfutils-f47ba53e758a954c72f820e169079aa767d9f96c.tar.bz2 android_external_elfutils-f47ba53e758a954c72f820e169079aa767d9f96c.zip |
2005-11-18 Roland McGrath <roland@redhat.com>
* alpha_init.c: Use HOOK macro.
* arm_init.c: Likewise.
* i386_init.c: Likewise.
* ia64_init.c: Likewise.
* ppc64_init.c: Likewise.
* ppc_init.c: Likewise.
* s390_init.c: Likewise.
* sh_init.c: Likewise.
* sparc_init.c: Likewise.
* x86_64_init.c: Likewise.
Diffstat (limited to 'backends/i386_init.c')
-rw-r--r-- | backends/i386_init.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/backends/i386_init.c b/backends/i386_init.c index a1056e73..3c9bd371 100644 --- a/backends/i386_init.c +++ b/backends/i386_init.c @@ -37,12 +37,12 @@ i386_init (elf, machine, eh, ehlen) /* We handle it. */ eh->name = "Intel 80386"; i386_init_reloc (eh); - eh->reloc_simple_type = i386_reloc_simple_type; - eh->gotpc_reloc_check = i386_gotpc_reloc_check; - eh->core_note = i386_core_note; + HOOK (eh, reloc_simple_type); + HOOK (eh, gotpc_reloc_check); + HOOK (eh, core_note); generic_debugscn_p = eh->debugscn_p; - eh->debugscn_p = i386_debugscn_p; - eh->return_value_location = i386_return_value_location; + HOOK (eh, debugscn_p); + HOOK (eh, return_value_location); return MODVERSION; } |