[NFC][AArch64] Explicitly define undefined bits for instructions (#122129)
[llvm-project.git] / compiler-rt / test / hwasan / TestCases / Linux / aligned_alloc-alignment.cpp
blob35e29e8cc834358c0de99939d51bf3f22c03239d
1 // RUN: %clangxx_hwasan -O0 %s -o %t
2 // RUN: %env_hwasan_opts=allocator_may_return_null=0 not %run %t 2>&1 | FileCheck %s
3 // RUN: %env_hwasan_opts=allocator_may_return_null=1 %run %t 2>&1 | FileCheck %s --check-prefix=CHECK-NULL
5 // UNSUPPORTED: android
7 #include <stdio.h>
8 #include <stdlib.h>
10 extern void *aligned_alloc(size_t alignment, size_t size);
12 int main() {
13 void *p = aligned_alloc(17, 100);
14 // CHECK: ERROR: HWAddressSanitizer: invalid alignment requested in aligned_alloc: 17
15 // CHECK: {{#0 0x.* in .*}}{{aligned_alloc|memalign}}
16 // CHECK: {{#1 0x.* in main .*aligned_alloc-alignment.cpp:}}[[@LINE-3]]
17 // CHECK: SUMMARY: HWAddressSanitizer: invalid-aligned-alloc-alignment {{.*}} in main
19 printf("pointer after failed aligned_alloc: %zd\n", (size_t)p);
20 // CHECK-NULL: pointer after failed aligned_alloc: 0
22 return 0;