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:
parent
d8c89b8a01
commit
99784e02d3
1 changed files with 12 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue