diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2021-07-12 14:36:39 -0700 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2021-07-12 18:13:32 -0700 |
commit | 84ea6ea24bd5bef674ce16a2832dbbe4d514e6d9 (patch) | |
tree | 4481eb56c43060ed63b8f4013e20f2169d32c0fe /sysdeps | |
parent | 72e84d1db22203e01a43268de71ea8669eca2863 (diff) | |
download | glibc-84ea6ea24bd5bef674ce16a2832dbbe4d514e6d9.tar.gz glibc-84ea6ea24bd5bef674ce16a2832dbbe4d514e6d9.tar.xz glibc-84ea6ea24bd5bef674ce16a2832dbbe4d514e6d9.zip |
mcheck: Align struct hdr to MALLOC_ALIGNMENT bytes [BZ #28068]
1. Align struct hdr to MALLOC_ALIGNMENT bytes so that malloc hooks in libmcheck align memory to MALLOC_ALIGNMENT bytes. 2. Remove tst-mallocalign1 from tests-exclude-mcheck for i386 and x32. 3. Add tst-pvalloc-fortify and tst-reallocarray to tests-exclude-mcheck since they use malloc_usable_size (see BZ #22057). This fixed BZ #28068. Reviewed-by: Siddhesh Poyarekar <siddhesh@sourceware.org>
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/i386/Makefile | 4 | ||||
-rw-r--r-- | sysdeps/x86_64/x32/Makefile | 4 |
2 files changed, 0 insertions, 8 deletions
diff --git a/sysdeps/i386/Makefile b/sysdeps/i386/Makefile index 8fb65c0f17..a2e8c0b128 100644 --- a/sysdeps/i386/Makefile +++ b/sysdeps/i386/Makefile @@ -5,10 +5,6 @@ asm-CPPFLAGS += -DGAS_SYNTAX # The i386 `long double' is a distinct type we support. long-double-fcts = yes -ifeq ($(subdir),malloc) -tests-exclude-mcheck += tst-mallocalign1 -endif - ifeq ($(subdir),math) # These functions change the rounding mode internally and need to # update both the SSE2 rounding mode and the 387 rounding mode. See diff --git a/sysdeps/x86_64/x32/Makefile b/sysdeps/x86_64/x32/Makefile index 62919c79f1..8748956563 100644 --- a/sysdeps/x86_64/x32/Makefile +++ b/sysdeps/x86_64/x32/Makefile @@ -1,7 +1,3 @@ -ifeq ($(subdir),malloc) -tests-exclude-mcheck += tst-mallocalign1 -endif - ifeq ($(subdir),math) # Since x32 returns 32-bit long int and 64-bit long long int in the # same 64-bit register, we make the 32b-bit lround an alias of the |