Files
swift-mirror/test/IRGen/playground.swift
Chris Brough 87e8627f2d [5.1] Upgrade PCMacro/PlaygroundTransform to support module/file IDs
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
2019-05-28 14:20:59 -07:00

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"