Rename flags and options to match current naming: from -fdef-sized-delete to -fdefine-sized-deallocation, and from DefaultSizedDelete to DefineSizedDeallocation.
llvm-svn: 229597
This commit is contained in:
@@ -1525,8 +1525,8 @@ static void ParseLangArgs(LangOptions &Opts, ArgList &Args, InputKind IK,
|
||||
Opts.NoMathBuiltin = Args.hasArg(OPT_fno_math_builtin);
|
||||
Opts.AssumeSaneOperatorNew = !Args.hasArg(OPT_fno_assume_sane_operator_new);
|
||||
Opts.SizedDeallocation |= Args.hasArg(OPT_fsized_deallocation);
|
||||
Opts.DefaultSizedDelete = Opts.SizedDeallocation &&
|
||||
Args.hasArg(OPT_fdef_sized_delete);
|
||||
Opts.DefineSizedDeallocation = Opts.SizedDeallocation &&
|
||||
Args.hasArg(OPT_fdefine_sized_deallocation);
|
||||
Opts.HeinousExtensions = Args.hasArg(OPT_fheinous_gnu_extensions);
|
||||
Opts.AccessControl = !Args.hasArg(OPT_fno_access_control);
|
||||
Opts.ElideConstructors = !Args.hasArg(OPT_fno_elide_constructors);
|
||||
|
||||
Reference in New Issue
Block a user