1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-23 10:12:33 +03:00

More IA-64 removal

This commit is contained in:
Ulrich Drepper
2012-01-07 12:55:20 -05:00
parent 7ae81d88f1
commit 664f8cb9d5
8 changed files with 31 additions and 137 deletions

View File

@@ -24,10 +24,7 @@
#elif defined __s390__
# define STACK_CHK_GUARD \
({ uintptr_t x; asm ("ear %0,%%a0; l %0,0x14(%0)" : "=a" (x)); x; })
#elif defined __ia64__
# define STACK_CHK_GUARD \
({ uintptr_t x; asm ("adds %0 = -8, r13;; ld8 %0 = [%0]" : "=r" (x)); x; })
#else
#elif !defined STACK_CHK_GUARD
extern uintptr_t __stack_chk_guard;
# define STACK_CHK_GUARD __stack_chk_guard
#endif