Skip to content

Commit b4f5647

Browse files
committed
Tentatively comment out a runtime fix that I think might be causing
problems on Linux, or at least I don't understand what actually *is* causing problems on Linux if it's not this.
1 parent 5937b16 commit b4f5647

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

stdlib/public/runtime/Demangle.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -758,9 +758,12 @@ swift::_swift_buildDemanglingForMetadata(const Metadata *type,
758758
Dem.createNode(Node::Kind::GlobalActorFunctionType);
759759
globalActorNode->addChild(globalActorTypeNode, Dem);
760760
funcNode->addChild(globalActorNode, Dem);
761+
#if 0
762+
// FIXME: testing whether this is somehow breaking the Linux build?
761763
} else if (func->getExtendedFlags().isIsolatedAny()) {
762764
funcNode->addChild(Dem.createNode(
763765
Node::Kind::IsolatedAnyFunctionType), Dem);
766+
#endif
764767
}
765768
switch (func->getDifferentiabilityKind().Value) {
766769
case FunctionMetadataDifferentiabilityKind::NonDifferentiable:

0 commit comments

Comments
 (0)