mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
13 lines
247 B
Swift
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()
|