Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / CodeGen / sanitize-thread-no-checking-at-run-time.m
blobec3726bb18c538d7612e05d9884a361f801a7696
1 // RUN: %clang_cc1 -triple x86_64-apple-darwin -x objective-c++ -fblocks -emit-llvm -o - %s | FileCheck -check-prefix=WITHOUT %s
2 // RUN: %clang_cc1 -triple x86_64-apple-darwin -x objective-c++ -fblocks -emit-llvm -o - %s -fsanitize=thread | FileCheck -check-prefix=TSAN %s
4 // WITHOUT-NOT: "sanitize_thread_no_checking_at_run_time"
6 __attribute__((objc_root_class))
7 @interface NSObject
8 - (void)dealloc;
9 @end
11 class NeedCleanup {
12 public:
13   ~NeedCleanup() __attribute__((no_sanitize("thread"))) {}
16 @interface MyObject : NSObject {
17   NeedCleanup v;
19 + (void) initialize;
20 - (void) dealloc;
21 @end
23 @implementation MyObject
24 + (void)initialize {
26 - (void)dealloc {
27   [super dealloc];
29 @end
31 // TSAN: initialize{{.*}}) [[ATTR:#[0-9]+]]
32 // TSAN: dealloc{{.*}}) [[ATTR:#[0-9]+]]
33 // TSAN: cxx_destruct{{.*}}) [[ATTR:#[0-9]+]]
35 void test2(id x) {
36   extern void test2_helper(id (^)(void));
37   test2_helper(^{ return x; });
38 // TSAN: define linkonce_odr hidden void @__destroy_helper_block_8_32o(ptr noundef %0) unnamed_addr [[ATTR:#[0-9]+]]
41 // TSAN: attributes [[ATTR]] = { noinline nounwind {{.*}} "sanitize_thread_no_checking_at_run_time" {{.*}} }