mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
This change PCMacro and PlaygroundTransform to return an a moduleID and fileID in addition to the source location information. The Frontend has been changed to run PCMacro and PlaygroundTransform on all input files instead of the main file only. The tests have been updated to conform to these changes with an addition of module and file ID specific tests. The Playgrounds related tests were adjusted to make a module out of the stub interface files since those files should not have PCMacro and PlaygroundTransform applied to them. rdar://problem/50821146
31 lines
1.0 KiB
Swift
31 lines
1.0 KiB
Swift
// RUN: rm -rf %t
|
|
// RUN: %target-swift-frontend -use-jit -playground -parse-stdlib %s -emit-ir -disable-objc-attr-requires-foundation-module | %FileCheck %s
|
|
|
|
// REQUIRES: OS=macosx
|
|
// REQUIRES: CPU=x86_64
|
|
// REQUIRES: objc_interop
|
|
|
|
import Swift
|
|
|
|
@objc class C { }
|
|
|
|
private func __builtin_log_scope_entry(_ startLine: Int, _ startColumn: Int,
|
|
_ endLine: Int, _ endColumn: Int, _ moduleID: Int, _ fileID: Int) { }
|
|
private func __builtin_log_scope_exit(_ startLine: Int, _ startColumn: Int,
|
|
_ endLine: Int, _ endColumn: Int, _ moduleID: Int, _ fileID: Int) { }
|
|
private func __builtin_send_data<T>(_ object: T) { }
|
|
|
|
public func anchor() {}
|
|
|
|
anchor()
|
|
|
|
// CHECK-LABEL: define{{( dllexport)?}}{{( protected)?}} i32 @main
|
|
// CHECK: call void @runtime_registration
|
|
// CHECK: call swiftcc void @"$s10playground6anchoryyF"
|
|
// CHECK: ret void
|
|
// CHECK: }
|
|
|
|
// CHECK-LABEL: define{{( protected)?}} private void @runtime_registration
|
|
// CHECK: call void @swift_instantiateObjCClass({{.*}} @"$s10playground1CCN"
|
|
|