mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2024-11-16 13:18:12 +01:00
(remote_install_cursor): Pass NULL to third argument of
tdep_uc_addr(). (Logical change 1.181)
This commit is contained in:
parent
41db5ace19
commit
5de460718c
1 changed files with 6 additions and 5 deletions
|
@ -186,11 +186,12 @@ remote_install_cursor (struct cursor *c)
|
||||||
memory, not registers. Furthermore, R4-R7 and NAT4-NAT7 are
|
memory, not registers. Furthermore, R4-R7 and NAT4-NAT7 are
|
||||||
taken care of by ia64_local_resume() so they don't need to be
|
taken care of by ia64_local_resume() so they don't need to be
|
||||||
handled here. */
|
handled here. */
|
||||||
# define MEMIFY(preg, reg) \
|
# define MEMIFY(preg, reg) \
|
||||||
do { \
|
do { \
|
||||||
if (IA64_IS_REG_LOC (c->loc[(preg)])) \
|
if (IA64_IS_REG_LOC (c->loc[(preg)])) \
|
||||||
c->loc[(preg)] = IA64_LOC_ADDR((unw_word_t) \
|
c->loc[(preg)] = IA64_LOC_ADDR ((unw_word_t) \
|
||||||
tdep_uc_addr(c->as_arg, (reg)), 0); \
|
tdep_uc_addr(c->as_arg, (reg), \
|
||||||
|
NULL), 0); \
|
||||||
} while (0)
|
} while (0)
|
||||||
MEMIFY (IA64_REG_PR, UNW_IA64_PR);
|
MEMIFY (IA64_REG_PR, UNW_IA64_PR);
|
||||||
MEMIFY (IA64_REG_PFS, UNW_IA64_AR_PFS);
|
MEMIFY (IA64_REG_PFS, UNW_IA64_AR_PFS);
|
||||||
|
|
Loading…
Reference in a new issue