mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
Most tests were using %swift or similar substitutions, which did not include the target triple and SDK. The driver was defaulting to the host OS. Thus, we could not run the tests when the standard library was not built for OS X. Swift SVN r24504
33 lines
983 B
Swift
33 lines
983 B
Swift
// RUN: rm -rf %t
|
|
// RUN: mkdir -p %t
|
|
// RUN: %target-swift-frontend %S/Inputs/vtable_deserialization_input.swift -o %t/Swift.swiftmodule -emit-module -parse-as-library -parse-stdlib -module-link-name swiftCore -module-name Swift -sil-serialize-all
|
|
// RUN: %target-swift-frontend %s -emit-sil -O -I %t -o - | FileCheck %s
|
|
|
|
import Swift
|
|
|
|
func WhatShouldIDoImBored<T : P>(t : T) {
|
|
t.doSomething()
|
|
}
|
|
|
|
func MakeItNotAGlobal() -> Y {
|
|
var x = Y()
|
|
WhatShouldIDoImBored(x)
|
|
return x
|
|
}
|
|
|
|
|
|
// Make sure all abstractions have been removed and everything inlined into top_level_method.
|
|
// CHECK-LABEL: sil @main
|
|
// CHECK-NEXT: bb0({{.*}}):
|
|
// CHECK-NEXT: function_ref unknown
|
|
// CHECK-NEXT: function_ref @unknown
|
|
// CHECK-NEXT: apply
|
|
// CHECK-NEXT: integer_literal
|
|
// CHECK-NEXT: return
|
|
// CHECK-NEXT: }
|
|
MakeItNotAGlobal()
|
|
|
|
// Make sure our vtable/witness tables are properly deserialized.
|
|
// CHECK: sil_vtable Y {
|
|
// CHECK: sil_witness_table public_external [fragile] Y: P module Swift {
|