[embedded] Specialize superclasses in VTableSpecializer as part of MandatoryPerformanceOptimizations

This commit is contained in:
Kuba Mracek
2024-03-15 21:30:08 -07:00
parent 8a4137ac6c
commit f5797941b7
3 changed files with 80 additions and 25 deletions

View File

@@ -0,0 +1,31 @@
// RUN: %target-run-simple-swift(-enable-experimental-feature Embedded -parse-as-library -runtime-compatibility-version none -wmo -Xfrontend -disable-objc-interop) | %FileCheck %s
// RUN: %target-run-simple-swift(-Osize -enable-experimental-feature Embedded -parse-as-library -runtime-compatibility-version none -wmo -Xfrontend -disable-objc-interop) | %FileCheck %s
// REQUIRES: swift_in_compiler
// REQUIRES: executable_test
// REQUIRES: optimized_stdlib
// REQUIRES: OS=macosx || OS=linux-gnu
class B<T> {
}
class D<T>: B<T> {
}
func callee<T>(_ t: T.Type) {
_ = D<T>()
}
public func test() {
callee(Int.self)
}
@main
struct Main {
static func main() {
test()
print("OK!")
}
}
// CHECK: OK!