File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -477,7 +477,7 @@ std::string LinkEntity::mangleAsString() const {
477
477
}
478
478
case Kind::DistributedThunkAsyncFunctionPointer: {
479
479
std::string Result = getSILDeclRef ().mangle ();
480
- Result.append (" Td " );
480
+ Result.append (" TE " );
481
481
Result.append (" Tu" );
482
482
return Result;
483
483
}
Original file line number Diff line number Diff line change 8
8
9
9
import _Distributed
10
10
11
- // CHECK: @"$s4test1AC13_remote_helloyyYaKFTd " = hidden global %swift.async_func_pointer
12
- // CHECK: @"$s4test1AC13_remote_helloyyYaKFTdTu " = hidden global %swift.async_func_pointer
11
+ // CHECK: @"$s4test1AC13_remote_helloyyYaKFTE " = hidden global %swift.async_func_pointer
12
+ // CHECK: @"$s4test1AC13_remote_helloyyYaKFTETu " = hidden global %swift.async_func_pointer
13
13
distributed actor SomeDistributedActor {
14
14
distributed func hello( name: String ) -> String {
15
15
" Hello, \( name) ! "
@@ -21,6 +21,6 @@ distributed actor SomeDistributedActor {
21
21
// function method descriptor
22
22
// IR unmangledName = $s4test20SomeDistributedActorC5hello4nameS2S_tFTq
23
23
// thunk, method reference
24
- // IR unmangledName = $s4test20SomeDistributedActorC5hello4nameS2S_tFTd
24
+ // IR unmangledName = $s4test20SomeDistributedActorC5hello4nameS2S_tFTE
25
25
// thunk, method reference + async function pointer
26
- // IR unmangledName = $s4test20SomeDistributedActorC5hello4nameS2S_tFTdTu
26
+ // IR unmangledName = $s4test20SomeDistributedActorC5hello4nameS2S_tFTETu
You can’t perform that action at this time.
0 commit comments