File tree Expand file tree Collapse file tree 2 files changed +0
-6
lines changed Expand file tree Collapse file tree 2 files changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -243,8 +243,6 @@ BridgedParameterInfoArray SILFunctionType_getParameters(BridgedCanType);
243243
244244BRIDGED_INLINE bool SILFunctionType_hasSelfParam (BridgedCanType);
245245
246- BRIDGED_INLINE bool SILFunctionType_isTrivialNoescape (BridgedCanType);
247-
248246SWIFT_IMPORT_UNSAFE BRIDGED_INLINE
249247BridgedYieldInfoArray SILFunctionType_getYields (BridgedCanType);
250248
Original file line number Diff line number Diff line change @@ -260,10 +260,6 @@ bool SILFunctionType_hasSelfParam(BridgedCanType funcTy) {
260260 return funcTy.unbridged ()->castTo <swift::SILFunctionType>()->hasSelfParam ();
261261}
262262
263- bool SILFunctionType_isTrivialNoescape (BridgedCanType funcTy) {
264- return funcTy.unbridged ()->castTo <swift::SILFunctionType>()->isTrivialNoEscape ();
265- }
266-
267263BridgedYieldInfoArray SILFunctionType_getYields (BridgedCanType funcTy) {
268264 return {funcTy.unbridged ()->castTo <swift::SILFunctionType>()->getYields ()};
269265}
You can’t perform that action at this time.
0 commit comments