1 // Sanity checking a test in pure C.
2 // RUN: %clang_asan -O2 %s -o %t
3 // RUN: not %run %t 2>&1 | FileCheck %s
5 // Sanity checking a test in pure C with -pie.
6 // RUN: %clang_asan -O2 %s %pie %fPIE -o %t
7 // RUN: not %run %t 2>&1 | FileCheck %s
8 // REQUIRES: stable-runtime
12 char *x
= (char*)malloc(10 * sizeof(char));
15 // CHECK: heap-use-after-free
17 // CHECK: main{{.*}}sanity_check_pure_c.c:[[@LINE-4]]
19 // CHECK: main{{.*}}sanity_check_pure_c.c:[[@LINE-7]]