[glibc/azanella/clang] malloc: Suppress clang warning on tst-aligned-alloc
Adhemerval Zanella
azanella@sourceware.org
Tue Apr 2 15:58:14 GMT 2024
https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=1ad7df8681d2227d7b155145ad98ea8696e58ca3
commit 1ad7df8681d2227d7b155145ad98ea8696e58ca3
Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Date: Thu Jul 27 15:55:42 2023 -0300
malloc: Suppress clang warning on tst-aligned-alloc
Diff:
---
malloc/tst-aligned-alloc.c | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/malloc/tst-aligned-alloc.c b/malloc/tst-aligned-alloc.c
index 91167d1392..b05be95a89 100644
--- a/malloc/tst-aligned-alloc.c
+++ b/malloc/tst-aligned-alloc.c
@@ -55,18 +55,31 @@ do_test (void)
if (p2 == NULL)
FAIL_EXIT1 ("aligned_alloc(1, 64) failed");
+ /* clang warns that alignment is not a power of 2, which is what the
+ test means to do. */
+ DIAG_PUSH_NEEDS_COMMENT_CLANG;
+ DIAG_IGNORE_NEEDS_COMMENT_CLANG (18.0, "-Wnon-power-of-two-alignment");
p3 = aligned_alloc (65, 64);
+ DIAG_POP_NEEDS_COMMENT_CLANG;
if (p3 != NULL)
FAIL_EXIT1 ("aligned_alloc(65, 64) did not fail");
+ DIAG_PUSH_NEEDS_COMMENT_CLANG;
+ DIAG_IGNORE_NEEDS_COMMENT_CLANG (18.0, "-Wnon-power-of-two-alignment");
p4 = aligned_alloc (0, 64);
+ DIAG_POP_NEEDS_COMMENT_CLANG;
if (p4 != NULL)
FAIL_EXIT1 ("aligned_alloc(0, 64) did not fail");
+ /* clang warns that alignment must be 4294967296 or smaller, which is
+ what the test means to do. */
+ DIAG_PUSH_NEEDS_COMMENT_CLANG;
+ DIAG_IGNORE_NEEDS_COMMENT_CLANG (18.0, "-Wbuiltin-assume-aligned-alignment");
/* This is an alignment like 0x80000000...UL */
p5 = aligned_alloc (SIZE_MAX / 2 + 1, 64);
+ DIAG_POP_NEEDS_COMMENT_CLANG;
if (p5 != NULL)
FAIL_EXIT1 ("aligned_alloc(SIZE_MAX/2+1, 64) did not fail");
More information about the Glibc-cvs
mailing list