mirror of
git://sourceware.org/git/glibc.git
synced 2024-11-27 03:41:23 +08:00
Cast _Unwind_GetCFA return to _Unwind_Ptr first
This commit is contained in:
parent
1897ad4432
commit
56965fd71c
@ -1,3 +1,8 @@
|
||||
2012-03-19 H.J. Lu <hongjiu.lu@intel.com>
|
||||
|
||||
* sysdeps/x86_64/jmpbuf-unwind.h (_JMPBUF_CFA_UNWINDS_ADJ): Cast
|
||||
_Unwind_GetCFA return to _Unwind_Ptr first.
|
||||
|
||||
2012-03-19 Joseph Myers <joseph@codesourcery.com>
|
||||
|
||||
[BZ #13629]
|
||||
|
@ -28,7 +28,9 @@
|
||||
((void *) (address) < (void *) demangle ((jmpbuf)[JB_RSP]))
|
||||
|
||||
#define _JMPBUF_CFA_UNWINDS_ADJ(_jmpbuf, _context, _adj) \
|
||||
_JMPBUF_UNWINDS_ADJ (_jmpbuf, (void *) _Unwind_GetCFA (_context), _adj)
|
||||
_JMPBUF_UNWINDS_ADJ (_jmpbuf, \
|
||||
(void *) (_Unwind_Ptr) _Unwind_GetCFA (_context), \
|
||||
_adj)
|
||||
|
||||
static inline uintptr_t __attribute__ ((unused))
|
||||
_jmpbuf_sp (__jmp_buf regs)
|
||||
|
Loading…
Reference in New Issue
Block a user