This reverts commit 481e9b3e0b.
Breaks sanitizer bots: https://lab.llvm.org/buildbot/#/builders/127/builds/59071
23 lines
776 B
C++
23 lines
776 B
C++
// RUN: %clang_cl_asan %Od %s %Fe%t
|
|
// RUN: not %run %t 2>&1 | FileCheck %s
|
|
|
|
#include <malloc.h>
|
|
|
|
int main() {
|
|
int *x = new int[42];
|
|
delete [] x;
|
|
delete [] x;
|
|
// CHECK: AddressSanitizer: attempting double-free on [[ADDR:0x[0-9a-f]+]]
|
|
// CHECK-NEXT: {{#0 .* operator delete}}[]
|
|
// CHECK-NEXT: {{#1 .* main .*double_operator_delete.cpp}}:[[@LINE-3]]
|
|
// CHECK: [[ADDR]] is located 0 bytes inside of 168-byte region
|
|
// CHECK-LABEL: freed by thread T0 here:
|
|
// CHECK-NEXT: {{#0 .* operator delete}}[]
|
|
// CHECK-NEXT: {{#1 .* main .*double_operator_delete.cpp}}:[[@LINE-8]]
|
|
// CHECK-LABEL: previously allocated by thread T0 here:
|
|
// CHECK-NEXT: {{#0 .* operator new}}[]
|
|
// CHECK-NEXT: {{#1 .* main .*double_operator_delete.cpp}}:[[@LINE-12]]
|
|
return 0;
|
|
}
|
|
|