diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2014-09-15 19:24:44 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2014-09-15 19:24:44 +0000 |
commit | d48b51be23b5627ef7ec81e2f060e6ce1912657f (patch) | |
tree | dd90654c2bf815f9f836877c6bd56de06444ae87 /clang/lib/CodeGen/ItaniumCXXABI.cpp | |
parent | fe5a5f6124c68b7da8529ad02fca2a176485dc09 (diff) | |
download | bcm5719-llvm-d48b51be23b5627ef7ec81e2f060e6ce1912657f.tar.gz bcm5719-llvm-d48b51be23b5627ef7ec81e2f060e6ce1912657f.zip |
Simplify the code a bit, NFC.
hasConstructorVariants is always true for MS and false for Itanium.
llvm-svn: 217809
Diffstat (limited to 'clang/lib/CodeGen/ItaniumCXXABI.cpp')
-rw-r--r-- | clang/lib/CodeGen/ItaniumCXXABI.cpp | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/clang/lib/CodeGen/ItaniumCXXABI.cpp b/clang/lib/CodeGen/ItaniumCXXABI.cpp index 877d32cc5f8..b897abc2c04 100644 --- a/clang/lib/CodeGen/ItaniumCXXABI.cpp +++ b/clang/lib/CodeGen/ItaniumCXXABI.cpp @@ -3002,13 +3002,8 @@ ItaniumCXXABI::RTTIUniquenessKind ItaniumCXXABI::classifyRTTIUniqueness( static void emitCXXConstructor(CodeGenModule &CGM, const CXXConstructorDecl *ctor, StructorType ctorType) { - if (!CGM.getTarget().getCXXABI().hasConstructorVariants()) { - // If there are no constructor variants, always emit the complete - // destructor. - ctorType = StructorType::Complete; - } else if (!ctor->getParent()->getNumVBases() && - (ctorType == StructorType::Complete || - ctorType == StructorType::Base)) { + if (!ctor->getParent()->getNumVBases() && + (ctorType == StructorType::Complete || ctorType == StructorType::Base)) { // The complete constructor is equivalent to the base constructor // for classes with no virtual bases. Try to emit it as an alias. bool ProducedAlias = !CGM.TryEmitDefinitionAsAlias( |