[OptTable] Fix typo VALUE => VALUES (NFCI) (#121523)
[llvm-project.git] / compiler-rt / test / asan / TestCases / sanity_check_pure_c.c
blob9d74996e43c55457360c4c003fd9ea796fd7e8ca
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
10 #include <stdlib.h>
11 int main() {
12 char *x = (char*)malloc(10 * sizeof(char));
13 free(x);
14 return x[5];
15 // CHECK: heap-use-after-free
16 // CHECK: free
17 // CHECK: main{{.*}}sanity_check_pure_c.c:[[@LINE-4]]
18 // CHECK: malloc
19 // CHECK: main{{.*}}sanity_check_pure_c.c:[[@LINE-7]]