mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
SIL bridging: work around an unresolved symbol linker error
Works around problem https://github.com/apple/swift/issues/64502
This commit is contained in:
@@ -1444,3 +1444,13 @@ bool BridgedPassContext::enableSimplificationFor(BridgedInstruction inst) const
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// TODO: can't be inlined to work around https://github.com/apple/swift/issues/64502
|
||||
CalleeList BridgedCalleeAnalysis::getCallees(BridgedValue callee) const {
|
||||
return ca->getCalleeListOfValue(callee.getSILValue());
|
||||
}
|
||||
|
||||
// TODO: can't be inlined to work around https://github.com/apple/swift/issues/64502
|
||||
CalleeList BridgedCalleeAnalysis::getDestructors(SILType type, bool isExactType) const {
|
||||
return ca->getDestructors(type, isExactType);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user