1
0
Fork 0
mirror of https://github.com/tobast/libunwind-eh_elf.git synced 2024-09-29 18:09:29 +02: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:
mostang.com!davidm 2003-04-03 07:59:15 +00:00
parent 4ca42d4a0c
commit 9abe0decf0

View file

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