mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-10 15:20:10 +00:00
Check if RTLD_SAVESPACE_SSE is aligned to 32 bytes
This commit is contained in:
parent
eae2d36a96
commit
1cf463cd4e
@ -1,3 +1,8 @@
|
||||
2012-05-10 H.J. Lu <hongjiu.lu@intel.com>
|
||||
|
||||
* sysdeps/x86_64/dl-trampoline.S: Check if RTLD_SAVESPACE_SSE
|
||||
is 32-byte aligned.
|
||||
|
||||
2012-05-11 Andreas Schwab <schwab@linux-m68k.org>
|
||||
|
||||
[BZ #11837]
|
||||
|
@ -20,6 +20,10 @@
|
||||
#include <sysdep.h>
|
||||
#include <link-defines.h>
|
||||
|
||||
#if (RTLD_SAVESPACE_SSE % 32) != 0
|
||||
# error RTLD_SAVESPACE_SSE must be aligned to 32 bytes
|
||||
#endif
|
||||
|
||||
.text
|
||||
.globl _dl_runtime_resolve
|
||||
.type _dl_runtime_resolve, @function
|
||||
|
Loading…
Reference in New Issue
Block a user