[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang / test / CodeGenCXX / sanitize-no-dtor-callback.cpp
blobffd573e4d251fabf18b1a3645fcbc67d9be97199
1 // Test with the flag -fno-sanitize-memory-use-after-dtor, to ensure that
2 // instrumentation is not erroneously inserted
3 // RUN: %clang_cc1 -fsanitize=memory -fno-sanitize-memory-use-after-dtor -triple=x86_64-pc-linux -emit-llvm -o - %s | FileCheck %s --implicit-check-not="call void @__sanitizer_"
5 struct Simple {
6 int x;
7 ~Simple() {}
8 };
9 Simple s;
10 // CHECK-LABEL: define {{.*}}SimpleD1Ev
12 struct Inlined {
13 int x;
14 inline ~Inlined() {}
16 Inlined i;
17 // CHECK-LABEL: define {{.*}}InlinedD1Ev
19 // CHECK-LABEL: define {{.*}}SimpleD2Ev
21 // CHECK-LABEL: define {{.*}}InlinedD2Ev