We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99c54ad commit 306df18Copy full SHA for 306df18
lib/FrontendTool/FrontendTool.cpp
@@ -1130,9 +1130,7 @@ static void performEndOfPipelineActions(CompilerInstance &Instance) {
1130
// FIXME: This predicate matches the status quo, but there's no reason
1131
// indexing cannot run for actions that do not require stdlib e.g. to better
1132
// facilitate tests.
1133
- if (FrontendOptions::doesActionRequireSwiftStandardLibrary(action) &&
1134
- // TODO: indexing often crashes when interop is enabled (rdar://87719859).
1135
- !Invocation.getLangOptions().EnableCXXInterop) {
+ if (FrontendOptions::doesActionRequireSwiftStandardLibrary(action)) {
1136
emitIndexData(Instance);
1137
}
1138
0 commit comments