mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-13 14:50:17 +00:00
15be91c2a0
Logic specific to ia64 used to live in the main tree in common files. Now that we can't do that (with #ifdef and such), we need to add that logic into dedicated overriding files. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
5 lines
125 B
C
5 lines
125 B
C
#include <stdint.h>
|
|
|
|
#define STACK_CHK_GUARD \
|
|
({ uintptr_t x; asm ("adds %0 = -8, r13;; ld8 %0 = [%0]" : "=r" (x)); x; })
|