Drop experimental prefixes from PackageCMO flags.

Deprecate experimental- flags with prompts to use the proper flags.

rdar://131498517
This commit is contained in:
Ellie Shin
2024-07-10 16:19:04 -07:00
parent 38631ac0b9
commit 18681c43fb
12 changed files with 66 additions and 52 deletions

View File

@@ -703,7 +703,7 @@ void ModuleFileSharedCore::outputDiagnosticInfo(llvm::raw_ostream &os) const {
<< " against SDK " << SDKVersion
<< ", " << (resilient? "resilient": "non-resilient");
if (Bits.AllowNonResilientAccess)
os << ", built with -experimental-allow-non-resilient-access";
os << ", built with -allow-non-resilient-access";
if (Bits.IsAllowModuleWithCompilerErrorsEnabled)
os << ", built with -experimental-allow-module-with-compiler-errors";
if (ModuleInputBuffer)