This is the mail archive of the
gdb-patches@sourceware.org
mailing list for the GDB project.
[PATCH 10/17] IA-64 support
- From: Sergio Durigan Junior <sergiodj at redhat dot com>
- To: GDB Patches <gdb-patches at sourceware dot org>
- Cc: Sergio Durigan Junior <sergiodj at redhat dot com>
- Date: Mon, 1 Jul 2013 04:42:18 -0300
- Subject: [PATCH 10/17] IA-64 support
- References: <1372664545-3947-1-git-send-email-sergiodj at redhat dot com>
IA-64 target support. Trivial, shares the signal numbers with x86.
2013-07-01 Sergio Durigan Junior <sergiodj@redhat.com>
* ia64-linux-tdep.c (ia64_linux_init_abi): Set
gdbarch_gdb_signal_to_target to linux_gdb_signal_to_target.
---
gdb/ia64-linux-tdep.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/gdb/ia64-linux-tdep.c b/gdb/ia64-linux-tdep.c
index d1eb529..d1eb29f 100644
--- a/gdb/ia64-linux-tdep.c
+++ b/gdb/ia64-linux-tdep.c
@@ -163,6 +163,8 @@ ia64_linux_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
set_gdbarch_stap_gdb_register_prefix (gdbarch, "r");
set_gdbarch_stap_is_single_operand (gdbarch,
ia64_linux_stap_is_single_operand);
+
+ set_gdbarch_gdb_signal_to_target (gdbarch, linux_gdb_signal_to_target);
}
/* Provide a prototype to silence -Wmissing-prototypes. */
--
1.7.11.7