mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
22 lines
659 B
Swift
22 lines
659 B
Swift
// RUN: %target-swift-frontend -target armv7-apple-none-macho -module-name main -parse-as-library -emit-ir %s -enable-experimental-feature Embedded | %FileCheck %s
|
|
// RUN: %target-swift-frontend -target arm64-apple-none-macho -module-name main -parse-as-library -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
|
|
|
|
@main
|
|
public struct Application {
|
|
public static func main() {
|
|
var x: UInt64 = 0
|
|
x <<= 8
|
|
}
|
|
}
|
|
|
|
enum MyEnum: UInt8 {
|
|
case a = 0
|
|
}
|
|
|
|
// CHECK: define {{.*}}@main(
|
|
|