1
0
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:
Mike Frysinger
2014-02-15 22:07:25 -05:00
parent 591aeaf7a9
commit c70a4b1db0
512 changed files with 33 additions and 125 deletions

View 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; })