mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
43 lines
2.3 KiB
Swift
43 lines
2.3 KiB
Swift
// RUN: not %swift -typecheck -target arm64-apple-ios7 -Xcc -### %s 2>&1 | %FileCheck -check-prefix=TARGETCPU1 %s
|
|
// TARGETCPU1: "-target-cpu" "cyclone"
|
|
|
|
// RUN: not %swift -typecheck -target arm64-apple-tvos9 -Xcc -### %s 2>&1 | %FileCheck -check-prefix=APPLETVTARGETCPU1 %s
|
|
// APPLETVTARGETCPU1: "-target-cpu" "cyclone"
|
|
|
|
// RUN: not %swift -typecheck -target armv7s-apple-tvos9 -Xcc -### %s 2>&1 | %FileCheck -check-prefix=APPLETVTARGETCPU2 %s
|
|
// APPLETVTARGETCPU2: "-target-cpu" "swift"
|
|
|
|
// RUN: not %swift -typecheck -target armv7-apple-tvos9 -Xcc -### %s 2>&1 | %FileCheck -check-prefix=APPLETVTARGETCPU3 %s
|
|
// APPLETVTARGETCPU3: "-target-cpu" "generic"
|
|
|
|
// RUN: not %swift -typecheck -target armv7k-apple-watchos2 -Xcc -### %s 2>&1 | %FileCheck -check-prefix=WATCHTARGETCPU1 %s
|
|
// WATCHTARGETCPU1: "-target-cpu" "cortex-a7"
|
|
|
|
// RUN: not %swift -typecheck -target arm64-apple-watchos2 -Xcc -### %s 2>&1 | %FileCheck -check-prefix=WATCHTARGETCPU2 %s
|
|
// WATCHTARGETCPU2: "-target-cpu" "cyclone"
|
|
|
|
// RUN: not %swift -typecheck -target armv7s-apple-ios7 -Xcc -### %s 2>&1 | %FileCheck -check-prefix=TARGETCPU2 %s
|
|
// TARGETCPU2: "-target-cpu" "swift"
|
|
|
|
// RUN: not %swift -typecheck -target armv7-apple-ios7 -Xcc -### %s 2>&1 | %FileCheck -check-prefix=TARGETCPU3 %s
|
|
// TARGETCPU3: "-target-cpu" "generic"
|
|
|
|
// RUN: not %swift -typecheck -target i386-apple-ios7 -Xcc -### %s 2>&1 | %FileCheck -check-prefix=SIMULATOR_CPU %s
|
|
// SIMULATOR_CPU: "-target-cpu" "yonah"
|
|
|
|
// RUN: not %swift -typecheck -target i386-apple-watchos2 -Xcc -### %s 2>&1 | %FileCheck -check-prefix=WATCHSIMULATOR_CPU %s
|
|
// WATCHSIMULATOR_CPU: "-target-cpu" "yonah"
|
|
|
|
// RUN: not %swift -typecheck -target x86_64-apple-ios7 -Xcc -### %s 2>&1 | %FileCheck -check-prefix=SIMULATOR64_CPU %s
|
|
// SIMULATOR64_CPU: "-target-cpu" "core2"
|
|
|
|
// RUN: not %swift -typecheck -target x86_64-apple-tvos9 -Xcc -### %s 2>&1 | %FileCheck -check-prefix=APPLETVSIMULATOR64_CPU %s
|
|
// APPLETVSIMULATOR64_CPU: "-target-cpu" "core2"
|
|
|
|
// RUN: not %swift -typecheck -target x86_64-apple-watchos2 -Xcc -### %s 2>&1 | %FileCheck -check-prefix=WATCHSIMULATOR64_CPU %s
|
|
// WATCHSIMULATOR64_CPU: "-target-cpu" "core2"
|
|
|
|
// RUN: not %swift -typecheck -target s390x-unknown-linux-gnu -Xcc -### %s 2>&1 | %FileCheck -check-prefix=S390X_CPU %s
|
|
// S390X_CPU: "-target-cpu" "z13"
|
|
|