Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions lldb/source/Plugins/TypeSystem/Swift/SwiftASTContext.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1821,10 +1821,10 @@ void SwiftASTContext::ConfigureModuleValidation(
#endif
}

if (!validate_pcm) {
if (!validate_pcm)
extra_args.push_back("-fno-modules-check-relocated");
LOG_PRINTF(GetLog(LLDBLog::Types), "PCM validation is disabled");
}
LOG_PRINTF(GetLog(LLDBLog::Types), "PCM validation is %s",
validate_pcm ? "disabled" : "enabled");
}

void SwiftASTContext::AddExtraClangArgs(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
import lldbsuite.test.lldbutil as lldbutil
import os

@skipIf(bugnumber = "rdar://159531233")
class TestSwiftFModuleFlags(TestBase):
@skipIf(macos_version=["<", "14.0"])
@skipIfDarwinEmbedded
Expand Down