diff options
| author | Richard Smith <richard-llvm@metafoo.co.uk> | 2012-04-25 18:28:49 +0000 |
|---|---|---|
| committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2012-04-25 18:28:49 +0000 |
| commit | 1ad04d95bccb9cc80bcdfd148b29efb59c6d38d7 (patch) | |
| tree | 7107f450dbd027c9c0907087135c387a14204f2a /clang/lib | |
| parent | 2823f58038d69ccf37f546bbeebc42fa9fad8924 (diff) | |
| download | bcm5719-llvm-1ad04d95bccb9cc80bcdfd148b29efb59c6d38d7.tar.gz bcm5719-llvm-1ad04d95bccb9cc80bcdfd148b29efb59c6d38d7.zip | |
PR12625: Cope with classes which have incomplete base or member types:
Don't try to query whether an incomplete type has a trivial copy constructor
when determining whether a move constructor should be declared.
llvm-svn: 155575
Diffstat (limited to 'clang/lib')
| -rw-r--r-- | clang/lib/Sema/SemaDeclCXX.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Sema/SemaDeclCXX.cpp b/clang/lib/Sema/SemaDeclCXX.cpp index 8645de1fcd6..5267499ea4e 100644 --- a/clang/lib/Sema/SemaDeclCXX.cpp +++ b/clang/lib/Sema/SemaDeclCXX.cpp @@ -8165,7 +8165,7 @@ hasMoveOrIsTriviallyCopyable(Sema &S, QualType Type, bool IsConstructor) { // reference types, are supposed to return false here, but that appears // to be a standard defect. CXXRecordDecl *ClassDecl = Type->getAsCXXRecordDecl(); - if (!ClassDecl) + if (!ClassDecl || !ClassDecl->getDefinition()) return true; if (Type.isTriviallyCopyableType(S.Context)) |

