diff options
author | Florian Weimer <fweimer@redhat.com> | 2018-01-04 18:00:05 +0100 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2018-01-04 18:47:35 +0100 |
commit | 8a5df95ffa83f525a4f638ead743f4fa2b7fe45a (patch) | |
tree | e31a8752224edc6c29d9017685dbea5c215d3254 /stdlib/Makefile | |
parent | 82eef55f8fad3e00c53050de5d6ebea08df488b3 (diff) | |
download | glibc-8a5df95ffa83f525a4f638ead743f4fa2b7fe45a.tar glibc-8a5df95ffa83f525a4f638ead743f4fa2b7fe45a.tar.gz glibc-8a5df95ffa83f525a4f638ead743f4fa2b7fe45a.tar.bz2 glibc-8a5df95ffa83f525a4f638ead743f4fa2b7fe45a.zip |
i386: In makecontext, align the stack before calling exit [BZ #22667]
Before this change, if glibc was compiled with SSE instructions and a
sufficiently recent GCC, an unaligned stack access in
__run_exit_handlers would cause stdlib/tst-makecontext to crash.
Diffstat (limited to 'stdlib/Makefile')
-rw-r--r-- | stdlib/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/stdlib/Makefile b/stdlib/Makefile index 691325b91b..7c363a6e4d 100644 --- a/stdlib/Makefile +++ b/stdlib/Makefile @@ -83,7 +83,8 @@ tests := tst-strtol tst-strtod testmb testrand testsort testdiv \ tst-getrandom tst-atexit tst-at_quick_exit \ tst-cxa_atexit tst-on_exit test-atexit-race \ test-at_quick_exit-race test-cxa_atexit-race \ - test-on_exit-race test-dlclose-exit-race + test-on_exit-race test-dlclose-exit-race \ + tst-makecontext-align tests-internal := tst-strtod1i tst-strtod3 tst-strtod4 tst-strtod5i \ tst-tls-atexit tst-tls-atexit-nodelete |