]> git.ipfire.org Git - thirdparty/glibc.git/blob - sysdeps/sparc/sparc32/stackguard-macros.h
BZ #15754: CVE-2013-4788
[thirdparty/glibc.git] / sysdeps / sparc / sparc32 / stackguard-macros.h
1 #include <stdint.h>
2
3 #define STACK_CHK_GUARD \
4 ({ uintptr_t x; asm ("ld [%%g7+0x14], %0" : "=r" (x)); x; })
5
6 #define POINTER_CHK_GUARD \
7 ({ uintptr_t x; asm ("ld [%%g7+0x18], %0" : "=r" (x)); x; })