mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
Short overview of new TBD-v4 format changes: * special section for reexported symbols (which is not seen any differently to the linker) * target based slices as opposed to just architecture more information in: rdar://problem/60586390
8 lines
284 B
Swift
8 lines
284 B
Swift
// RUN: %swift -typecheck -target arm64e-apple-ios12.0 -parse-stdlib -parse-as-library %s -module-name TBDTester -emit-tbd -emit-tbd-path - | %FileCheck %s
|
|
|
|
public func testSwiftFunc() {}
|
|
|
|
// CHECK: --- !tapi-tbd
|
|
// CHECK: arm64e
|
|
// CHECK: symbols: [ '_$s{{.*}}testSwiftFunc{{.*}}' ]
|