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 1eb0ad2 commit 66621d8Copy full SHA for 66621d8
lib/SILOptimizer/PassManager/PassPipeline.cpp
@@ -888,7 +888,10 @@ static void addLastChanceOptPassPipeline(SILPassPipelinePlan &P) {
888
889
// Verify AccessStorage once again after optimizing and lowering OSSA.
890
#ifndef NDEBUG
891
- P.addAccessPathVerification();
+ // Temporarily disabled because it triggers a false alarm when building
892
+ // SwiftDocC on linux: rdar://141270464
893
+ // TODO: re-enable when the problem is fixed.
894
+ // P.addAccessPathVerification();
895
#endif
896
897
// Only has an effect if the -assume-single-thread option is specified.
0 commit comments