File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -51,6 +51,8 @@ class IRGenMangler : public Mangle::ASTMangler {
51
51
beginMangling ();
52
52
appendEntity (func);
53
53
appendOperator (" Tj" );
54
+ if (func->isDistributedThunk ())
55
+ appendSymbolKind (SymbolKind::DistributedThunk);
54
56
return finalize ();
55
57
}
56
58
@@ -69,6 +71,8 @@ class IRGenMangler : public Mangle::ASTMangler {
69
71
derivativeId->getDerivativeGenericSignature ());
70
72
appendAutoDiffFunctionParts (" TJ" , kind, config);
71
73
appendOperator (" Tj" );
74
+ if (func->isDistributedThunk ())
75
+ appendSymbolKind (SymbolKind::DistributedThunk);
72
76
return finalize ();
73
77
}
74
78
@@ -104,6 +108,8 @@ class IRGenMangler : public Mangle::ASTMangler {
104
108
derivativeId->getDerivativeGenericSignature ());
105
109
appendAutoDiffFunctionParts (" TJ" , kind, config);
106
110
appendOperator (" Tq" );
111
+ if (func->isDistributedThunk ())
112
+ appendSymbolKind (SymbolKind::DistributedThunk);
107
113
return finalize ();
108
114
}
109
115
You can’t perform that action at this time.
0 commit comments