Files
swift-mirror/test/Profiler/instrprof_tsan.swift
2018-08-17 10:59:25 -07:00

13 lines
247 B
Swift

// RUN: %target-swift-frontend -emit-ir -profile-generate -sanitize=thread %s | %FileCheck %s
// REQUIRES: OS=macosx
// REQUIRES: CPU=x86_64
// CHECK: define {{.*}}empty
// CHECK-NOT: load{{.*}}empty
// CHECK: ret void
func empty() {
}
empty()