[asan] Revert r201402, r201404.
[blocksruntime.git] / lib / msan / lit_tests / poison_in_free.cc
blobf134d05abb1eeb94c6618b92642da4c2ed60e1dc
1 // RUN: %clangxx_msan -O0 %s -o %t && not %t >%t.out 2>&1
2 // FileCheck %s <%t.out
3 // RUN: %clangxx_msan -O0 %s -o %t && MSAN_OPTIONS=poison_in_free=0 %t >%t.out 2>&1
5 #include <stdio.h>
6 #include <stdlib.h>
7 #include <string.h>
9 int main(int argc, char **argv) {
10 char *volatile x = (char*)malloc(50 * sizeof(char));
11 memset(x, 0, 50);
12 free(x);
13 return x[25];
14 // CHECK: MemorySanitizer: use-of-uninitialized-value
15 // CHECK: #0 {{.*}} in main{{.*}}poison_in_free.cc:[[@LINE-2]]