blob: 4912a27229f9616543e4f57d6e01ed1b941ad834 [file] [log] [blame]
Evgeniy Stepanov7cacbe42015-07-14 00:34:50 +00001// Test -fsanitize-memory-use-after-dtor
2// RUN: %clang_cc1 -fsanitize=memory -fsanitize-memory-use-after-dtor -triple=x86_64-pc-linux -emit-llvm -o - %s | FileCheck %s
3// RUN: %clang_cc1 -fsanitize=memory -triple=x86_64-pc-linux -emit-llvm -o - %s | FileCheck %s -check-prefix=NO_DTOR_CHECK
4
5struct Simple {
6 ~Simple() {}
7};
8Simple s;
9// Simple internal member is poisoned by compiler-generated dtor
10// CHECK-LABEL: @_ZN6SimpleD2Ev
11// CHECK: call void @__sanitizer_dtor_callback
12// CHECK: ret void
13
14// Compiling without the flag does not generate member-poisoning dtor
15// NO_DTOR_CHECK-LABEL: @_ZN6SimpleD2Ev
16// NO_DTOR_CHECK-NOT: call void @sanitizer_dtor_callback
17// NO_DTOR_CHECK: ret void