From 9fb1a21f4d33c4c82719d6130e149eb2c5a51ae8 Mon Sep 17 00:00:00 2001 From: "H.J. Lu" Date: Fri, 11 May 2012 16:31:34 -0700 Subject: Add x32 support to STACK_CHK_GUARD --- elf/stackguard-macros.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'elf') diff --git a/elf/stackguard-macros.h b/elf/stackguard-macros.h index a9889cf7b2..0cad31550c 100644 --- a/elf/stackguard-macros.h +++ b/elf/stackguard-macros.h @@ -5,7 +5,9 @@ ({ uintptr_t x; asm ("movl %%gs:0x14, %0" : "=r" (x)); x; }) #elif defined __x86_64__ # define STACK_CHK_GUARD \ - ({ uintptr_t x; asm ("movq %%fs:0x28, %0" : "=r" (x)); x; }) + ({ uintptr_t x; \ + asm ("mov %%fs:%c1, %0" : "=r" (x) \ + : "i" (offsetof (tcbhead_t, stack_guard))); x; }) #elif defined __powerpc64__ # define STACK_CHK_GUARD \ ({ uintptr_t x; asm ("ld %0,-28688(13)" : "=r" (x)); x; }) -- cgit v1.2.3-70-g09d2