mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2024-11-04 17:09:25 +01:00
(ia64_init): Call _ULia64_local_addr_space_init() only if UNW_GENERIC_ONLY is
not defined. (Logical change 1.75)
This commit is contained in:
parent
4ca42d4a0c
commit
9abe0decf0
1 changed files with 6 additions and 2 deletions
|
@ -108,7 +108,6 @@ HIDDEN void
|
|||
ia64_init (void)
|
||||
{
|
||||
extern void unw_hash_index_t_is_too_narrow (void);
|
||||
extern void _ULia64_local_addr_space_init (void);
|
||||
uint8_t f1_bytes[16] = {
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff,
|
||||
0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
|
||||
|
@ -163,6 +162,11 @@ ia64_init (void)
|
|||
|
||||
#ifndef UNW_REMOTE_ONLY
|
||||
_Uia64_local_addr_space_init ();
|
||||
_ULia64_local_addr_space_init ();
|
||||
# ifndef UNW_GENERIC_ONLY
|
||||
{
|
||||
extern void _ULia64_local_addr_space_init (void);
|
||||
_ULia64_local_addr_space_init ();
|
||||
}
|
||||
# endif
|
||||
#endif
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue