File tree Expand file tree Collapse file tree 1 file changed +2
-11
lines changed Expand file tree Collapse file tree 1 file changed +2
-11
lines changed Original file line number Diff line number Diff line change @@ -301,17 +301,8 @@ static void computeSwiftModuleTraceInfo(
301
301
302
302
ModuleDecl *depMod = dep->second ;
303
303
if (depMod->isResilient () && !isSwiftinterface) {
304
- SmallString<256 > moduleAdjacentInterfacePath (depPath);
305
- computeAdjacentInterfacePath (moduleAdjacentInterfacePath);
306
- // FIXME: The behavior of fs::exists for relative paths is undocumented.
307
- // Use something else instead?
308
- if (!fs::exists (moduleAdjacentInterfacePath)) {
309
- err << " The module " << depMod->getName ().str () << " has library"
310
- << " evolution enabled but we're recording a non-adjacent"
311
- << " swiftmodule at\n " << depPath << " \n in the trace." ;
312
- llvm::report_fatal_error (err.str ());
313
- }
314
- buffer.clear ();
304
+ // FIXME: Ideally, we would check that the swiftmodule has a
305
+ // swiftinterface next to it. Tracked by rdar://problem/56351399.
315
306
}
316
307
317
308
// FIXME: Better error handling
You can’t perform that action at this time.
0 commit comments