mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-30 22:43:12 +03:00
ia64: relocate out of ports/ subdir
This commit is contained in:
7
sysdeps/ia64/stackguard-macros.h
Normal file
7
sysdeps/ia64/stackguard-macros.h
Normal file
@ -0,0 +1,7 @@
|
||||
#include <stdint.h>
|
||||
|
||||
#define STACK_CHK_GUARD \
|
||||
({ uintptr_t x; asm ("adds %0 = -8, r13;; ld8 %0 = [%0]" : "=r" (x)); x; })
|
||||
|
||||
#define POINTER_CHK_GUARD \
|
||||
({ uintptr_t x; asm ("adds %0 = -16, r13;; ld8 %0 = [%0]" : "=r" (x)); x; })
|
Reference in New Issue
Block a user