Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / compiler-rt / test / asan / TestCases / Linux / interception_malloc_test.cpp
blobf6d6d340bd9c3b8db7058625e9dac7f02a327ffa
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
7 #include <stdlib.h>
8 #include <stdio.h>
9 #include <unistd.h>
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);
17 int main() {
18 char *x = (char*)malloc(10 * sizeof(char));
19 free(x);
20 return (int)strtol(x, 0, 10);
21 // CHECK: malloc call
22 // CHECK: heap-use-after-free