diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2023-07-27 15:55:42 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2024-02-09 10:29:18 -0300 |
commit | 6499a2757423592910a0ba766a6f5e221ee9699e (patch) | |
tree | 2d585cd75f7cc1b754e833757caceded52ee62fd | |
parent | e5fe85a7407a56e2d9a42f535f3be2812a3112c0 (diff) | |
download | glibc-6499a2757423592910a0ba766a6f5e221ee9699e.tar glibc-6499a2757423592910a0ba766a6f5e221ee9699e.tar.gz glibc-6499a2757423592910a0ba766a6f5e221ee9699e.tar.bz2 glibc-6499a2757423592910a0ba766a6f5e221ee9699e.zip |
malloc: Suppress clang warning on tst-aligned-alloc
-rw-r--r-- | malloc/tst-aligned-alloc.c | 13 |
1 files changed, 13 insertions, 0 deletions
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"); |