Remove the language/driver/frontend options to enable/disable mangled names for the ObjC runtime.

Burn the bridges!


Swift SVN r16277
This commit is contained in:
Doug Gregor
2014-04-13 05:36:08 +00:00
parent c1fd5b5a31
commit 2d28d70bf8
7 changed files with 5 additions and 139 deletions

View File

@@ -508,12 +508,6 @@ static bool ParseLangArgs(LangOptions &Opts, ArgList &Args,
Opts.EnableExperimentalPatterns = true;
}
if (const Arg *A = Args.getLastArg(OPT_enable_objc_mangling,
OPT_disable_objc_mangling)) {
Opts.MangleObjCClassProtocolNames
= A->getOption().matches(OPT_enable_objc_mangling);
}
if (Args.hasArg(OPT_debug_constraints)) {
Opts.DebugConstraintSolver = true;
}