From 99784e02d3e228a94f598e71d3b8519e20faa1f1 Mon Sep 17 00:00:00 2001
From: "homeip.net!davidm" <homeip.net!davidm>
Date: Fri, 20 Aug 2004 11:23:15 +0000
Subject: [PATCH] (_UPTi_find_unwind_table): Provide dummy x86-64
 implementation so 	"make check" can be run.

(Logical change 1.253)
---
 src/ptrace/_UPT_find_proc_info.c | 13 ++++++++++++-
 1 file changed, 12 insertions(+), 1 deletion(-)

diff --git a/src/ptrace/_UPT_find_proc_info.c b/src/ptrace/_UPT_find_proc_info.c
index 85c02802..ceaa2ae7 100644
--- a/src/ptrace/_UPT_find_proc_info.c
+++ b/src/ptrace/_UPT_find_proc_info.c
@@ -151,10 +151,21 @@ HIDDEN unw_dyn_info_t *
 _UPTi_find_unwind_table (struct UPT_info *ui, unw_addr_space_t as,
 			 char *path, unw_word_t segbase, unw_word_t mapoff)
 {
+  /* fix me */
   return NULL;
 }
 
-#endif /* UNW_TARGET_X86 */
+#elif UNW_TARGET_X86_64
+
+HIDDEN unw_dyn_info_t *
+_UPTi_find_unwind_table (struct UPT_info *ui, unw_addr_space_t as,
+			 char *path, unw_word_t segbase, unw_word_t mapoff)
+{
+  /* fix me */
+  return NULL;
+}
+
+#endif /* UNW_TARGET_X86_64 */
 
 static unw_dyn_info_t *
 get_unwind_info (struct UPT_info *ui, unw_addr_space_t as, unw_word_t ip)