1
0
Fork 0
mirror of https://github.com/tobast/libunwind-eh_elf.git synced 2024-06-26 03:11:44 +02:00

Rename: src/ia64/global-asm-ia64.S -> src/ia64/dyn_info_list-ia64.S

(Logical change 1.151)
This commit is contained in:
hp.com!davidm 2004-01-03 10:50:24 +00:00
parent d28aba1c56
commit 8d331ad2ae

View file

@ -0,0 +1,22 @@
#ifndef UNW_REMOTE_ONLY
/*
* Create a special unwind-table entry which makes it easy for an
* unwinder to locate the dynamic registration list. The special
* entry covers address range [0-0) and is therefore guaranteed to be
* the first in the unwind-table.
*/
.global _U_dyn_info_list
.hidden _U_dyn_info_list
.section .IA_64.unwind_info,"a","progbits"
.info: data8 (1<<48) | 1 /* v1, length==1 (8-byte word) */
data8 0 /* 8 empty .prologue directives (nops) */
data8 0 /* personality routine (ignored) */
string "dyn-list" /* lsda */
data8 @gprel(_U_dyn_info_list)
.section .IA_64.unwind, "a", "progbits"
data8 0, 0, @segrel(.info)
#endif