summaryrefslogtreecommitdiffstats
path: root/backends/ia64_init.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@redhat.com>2006-07-21 10:06:31 +0000
committerRoland McGrath <roland@redhat.com>2006-07-21 10:06:31 +0000
commit950246297c03f9ce25f645470250619e40d71018 (patch)
tree9727ed2b50b6c582cfb7f36672361f7f3d335876 /backends/ia64_init.c
parent858b189f82ecc32ca7042e74ccb022f794a9f83b (diff)
downloadandroid_external_elfutils-950246297c03f9ce25f645470250619e40d71018.tar.gz
android_external_elfutils-950246297c03f9ce25f645470250619e40d71018.tar.bz2
android_external_elfutils-950246297c03f9ce25f645470250619e40d71018.zip
backends/
2006-07-21 Roland McGrath <roland@redhat.com> * i386_regs.c (i386_register_name): Fix return value when using stpcpy. * ppc_regs.c (ppc_register_name): Likewise. * s390_regs.c (s390_register_name): Likewise. * ia64_retval.c: New file. * Makefile.am (ia64_SRCS): Add it. * ia64_init.c (ia64_init): Install return_value_location hook. * ia64_regs.c: New file. * Makefile.am (ia64_SRCS): Add it. * ia64_init.c (ia64_init): Install register_name hook. tests/ 2006-07-21 Roland McGrath <roland@redhat.com> * allregs.c (struct reginfo): Increase size of name. (one_register): Assert that it's big enough.
Diffstat (limited to 'backends/ia64_init.c')
-rw-r--r--backends/ia64_init.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/backends/ia64_init.c b/backends/ia64_init.c
index 42f0634b..490c774a 100644
--- a/backends/ia64_init.c
+++ b/backends/ia64_init.c
@@ -1,5 +1,5 @@
/* Initialization of IA-64 specific backend library.
- Copyright (C) 2002, 2003, 2005 Red Hat, Inc.
+ Copyright (C) 2002, 2003, 2005, 2006 Red Hat, Inc.
This file is part of Red Hat elfutils.
Written by Ulrich Drepper <drepper@redhat.com>, 2002.
@@ -55,6 +55,8 @@ ia64_init (elf, machine, eh, ehlen)
HOOK (eh, dynamic_tag_name);
HOOK (eh, dynamic_tag_check);
HOOK (eh, machine_flag_check);
+ HOOK (eh, register_name);
+ HOOK (eh, return_value_location);
return MODVERSION;
}