summaryrefslogtreecommitdiff
path: root/backends/x86_64_init.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@redhat.com>2005-11-19 07:40:29 +0000
committerRoland McGrath <roland@redhat.com>2005-11-19 07:40:29 +0000
commitf47ba53e758a954c72f820e169079aa767d9f96c (patch)
treeb50fb909ecc8bbce8b7a5f76ce01eb41e2b40db8 /backends/x86_64_init.c
parent9365d2c3439c524c9ca0b9d70f0a559d392a7e05 (diff)
downloadelfutils-f47ba53e758a954c72f820e169079aa767d9f96c.tar.gz
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/x86_64_init.c')
-rw-r--r--backends/x86_64_init.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/backends/x86_64_init.c b/backends/x86_64_init.c
index 22147a1f..fe877575 100644
--- a/backends/x86_64_init.c
+++ b/backends/x86_64_init.c
@@ -39,9 +39,9 @@ x86_64_init (elf, machine, eh, ehlen)
/* We handle it. */
eh->name = "AMD x86-64";
x86_64_init_reloc (eh);
- eh->reloc_simple_type = x86_64_reloc_simple_type;
- eh->core_note = x86_64_core_note;
- eh->return_value_location = x86_64_return_value_location;
+ HOOK (eh, reloc_simple_type);
+ HOOK (eh, core_note);
+ HOOK (eh, return_value_location);
return MODVERSION;
}