1 // ASan interceptor can be accessed with __interceptor_ prefix.
3 // RUN: %clangxx_asan -O0 %s -o %t && not %run %t 2>&1 | FileCheck %s
4 // RUN: %clangxx_asan -O1 %s -o %t && not %run %t 2>&1 | FileCheck %s
5 // RUN: %clangxx_asan -O2 %s -o %t && not %run %t 2>&1 | FileCheck %s
6 // RUN: %clangxx_asan -O3 %s -o %t && not %run %t 2>&1 | FileCheck %s
11 extern "C" void *__interceptor_malloc(size_t size
);
12 extern "C" void *malloc(size_t size
) {
13 write(2, "malloc call\n", sizeof("malloc call\n") - 1);
14 return __interceptor_malloc(size
);
18 char *x
= (char*)malloc(10 * sizeof(char));
20 return (int)strtol(x
, 0, 10);
22 // CHECK: heap-use-after-free