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:
Larisse Voufo
2015-02-18 01:04:10 +00:00
parent 8af49b3214
commit e990a3f60c
9 changed files with 15 additions and 15 deletions

View File

@@ -892,7 +892,7 @@ void CodeGenFunction::GenerateCode(GlobalDecl GD, llvm::Function *Fn,
FD->getCorrespondingUnsizedGlobalDeallocationFunction()) {
// Global sized deallocation functions get an implicit weak definition if
// they don't have an explicit definition, if allowed.
assert(getLangOpts().DefaultSizedDelete &&
assert(getLangOpts().DefineSizedDeallocation &&
"Can't emit unallowed definition.");
EmitSizedDeallocationFunction(*this, UnsizedDealloc);