Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / compiler-rt / test / asan / TestCases / Linux / new_delete_mismatch_global.cpp
blob3f1a78715cafea3b1cf574e7a625dbcc07226ab7
1 // Check that we report delete on a memory that belongs to a global variable.
3 // RUN: %clangxx_asan -g %s -o %t && %env_asan_opts=alloc_dealloc_mismatch=1 not %run %t 2>&1 | FileCheck %s
5 #include <stdlib.h>
7 static volatile char *x;
8 char a[10];
10 int main() {
11 x = &a[0];
12 delete x;
15 // CHECK: AddressSanitizer: attempting free on address which was not malloc()-ed
16 // CHECK: is located 0 bytes inside of global variable 'a' defined in