Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions lib/SILOptimizer/Mandatory/TFDeabstraction.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -298,6 +298,11 @@ void TFDeabstraction::inlineCalls() {
auto &module = fn.getModule();
module.invalidateSILLoaderCaches();

if (!inlinedCallees.empty()) {
passManager->invalidateAnalysis(
&fn, SILAnalysis::InvalidationKind::FunctionBody);
}

// Now that we've inlined some functions, clean them up to avoid burning
// compile time in later passes. We do this with a simple linear scan,
// because functions that reference each other have already been flattened
Expand Down