mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
55 lines
1.5 KiB
Swift
55 lines
1.5 KiB
Swift
// RUN: %target-swift-frontend -target %target-triple -emit-ir %s -enable-experimental-feature Embedded | %FileCheck %s
|
|
|
|
// REQUIRES: swift_in_compiler
|
|
// REQUIRES: CODEGENERATOR=ARM
|
|
// REQUIRES: embedded_stdlib_cross_compiling
|
|
// REQUIRES: swift_feature_Embedded
|
|
|
|
// https://github.com/apple/swift/issues/73249
|
|
// UNSUPPORTED: OS=windows-msvc
|
|
|
|
public func bool() -> Bool {
|
|
return true
|
|
}
|
|
|
|
public func int() -> Int {
|
|
return 42
|
|
}
|
|
|
|
public func ptr(p: UnsafeRawPointer, n: Int) -> UnsafeRawPointer {
|
|
return p.advanced(by: n)
|
|
}
|
|
|
|
public func optional() -> Int? {
|
|
return nil
|
|
}
|
|
|
|
public func staticstring() -> StaticString {
|
|
return "hello"
|
|
}
|
|
|
|
public func unicodescalars() {
|
|
let a = UInt8(ascii: "-")
|
|
let b = Unicode.Scalar("-").value
|
|
}
|
|
|
|
public func checks(n: Int) {
|
|
precondition(n > 0)
|
|
precondition(n > 0, "message")
|
|
assert(n > 0, "message")
|
|
if n < 0 { fatalError() }
|
|
if n < 0 { fatalError("with message") }
|
|
if n < 0 { preconditionFailure() }
|
|
if n < 0 { preconditionFailure("with message") }
|
|
if n < 0 { assertionFailure() }
|
|
if n < 0 { assertionFailure("with message") }
|
|
}
|
|
|
|
// CHECK: define {{.*}}i32 @{{_*}}main{{.*}}(i32 %0, ptr %1)
|
|
// CHECK: define {{.*}}i1 @"$e4main4boolSbyF"()
|
|
// CHECK: define {{.*}}{{i32|i64}} @"$e4main3intSiyF"()
|
|
// CHECK: define {{.*}}ptr @"$e4main3ptr1p1nS2V_SitF"(ptr %0, {{i32|i64}} %1)
|
|
// CHECK: define {{.*}}{ {{i32|i64}}, i8 } @"$e4main8optionalSiSgyF"()
|
|
// CHECK: define {{.*}}{ {{i32|i64}}, {{i32|i64}}, i8 } @"$e4main12staticstrings12StaticStringVyF"()
|
|
// CHECK: define {{.*}}void @"$e4main6checks1nySi_tF"({{i32|i64}} %0)
|