[Frontend] Remove unused includes (NFC) (#116927)
[llvm-project.git] / llvm / test / Instrumentation / ThreadSanitizer / tsan-pass-second-run.ll
blob9614a418480ec899e5d5d3ef142529324c265da8
1 ; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --check-attributes --check-globals --version 2
2 ; RUN: opt < %s -passes=tsan-module,tsan-module -S | FileCheck %s
4 target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64-S128"
6 declare void @can_throw()
7 declare void @cannot_throw() nounwind
9 ;.
10 ; CHECK: @llvm.used = appending global [1 x ptr] [ptr @tsan.module_ctor], section "llvm.metadata"
11 ; CHECK: @llvm.global_ctors = appending global [1 x { i32, ptr, ptr }] [{ i32, ptr, ptr } { i32 0, ptr @tsan.module_ctor, ptr null }]
13 define i32 @func1() sanitize_thread {
14 ; CHECK: Function Attrs: sanitize_thread
15 ; CHECK-LABEL: define i32 @func1
16 ; CHECK-SAME: () #[[ATTR1:[0-9]+]] {
17 ; CHECK-NEXT:    call void @can_throw()
18 ; CHECK-NEXT:    ret i32 0
20   call void @can_throw()
21   ret i32 0
24 ; CHECK: attributes #[[ATTR0:[0-9]+]] = { nounwind }
25 ; CHECK: attributes #[[ATTR1]] = { sanitize_thread }
27 ; CHECK: [[META0:![0-9]+]] = !{i32 4, !"nosanitize_thread", i32 1}