mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
It was only used in a few tests. Those tests now use -emit-sil instead of -emit-silgen, with some functions marked @_transparent and a few CHECK: lines changed now that the mandatory optimizations get to run.
8 lines
355 B
Swift
8 lines
355 B
Swift
// RUN: %empty-directory(%t)
|
|
// RUN: %target-swift-frontend -emit-module -O -sil-inline-threshold 0 -module-name Swift -module-link-name swiftCore -parse-as-library -parse-stdlib -emit-module %S/Inputs/vtable-function-deserialization-input.swift -o %t/Swift.swiftmodule
|
|
// RUN: %target-swift-frontend -I %t %s -emit-sil -o - -O
|
|
|
|
import Swift
|
|
|
|
var a = A()
|