1
0
Fork 0
mirror of https://github.com/tobast/libunwind-eh_elf.git synced 2025-04-01 03:52:16 +02:00

(_UPTi_find_unwind_table): Provide dummy x86-64 implementation so

"make check" can be run.

(Logical change 1.253)
This commit is contained in:
homeip.net!davidm 2004-08-20 11:23:15 +00:00
parent d8c89b8a01
commit 99784e02d3

View file

@ -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)