Files
swift-mirror/test/IRGen/dynamic_self.sil
Joe Groff 8cb1175e49 IRGen: Emit public definitions with protected visibility on ELF.
This prevents the linker from trying to emit relative relocations to locally-defined public symbols into dynamic libraries, which gives ld.so heartache.
2016-02-08 13:09:27 -08:00

28 lines
981 B
Plaintext

// RUN: %target-swift-frontend -emit-ir %s | FileCheck %s
// REQUIRES: CPU=i386_or_x86_64
sil_stage canonical
import Builtin
import Swift
protocol P {
func f() -> Self
}
// CHECK-LABEL: define{{( protected)?}} void @_TF12dynamic_self23testExistentialDispatchFT1pPS_1P__T_
sil @_TF12dynamic_self23testExistentialDispatchFT1pPS_1P__T_ : $@convention(thin) (@in P) -> () {
bb0(%0 : $*P):
debug_value_addr %0 : $*P, let, name "p" // id: %1
%2 = alloc_stack $P // users: %3, %4, %12
copy_addr %0 to [initialization] %2 : $*P // id: %3
// CHECK: call %swift.opaque*
// CHECK: call %swift.opaque*
%4 = open_existential_addr %2 : $*P to $*@opened("01234567-89ab-cdef-0123-000000000000") P // users: %8, %10
dealloc_stack %2 : $*P // id: %12
destroy_addr %0 : $*P // id: %13
%14 = tuple () // user: %15
return %14 : $() // id: %15
}