]> granicus.if.org Git - clang/commitdiff
Simplify check per Eli's comment
authorDouglas Gregor <dgregor@apple.com>
Sat, 25 Feb 2012 00:06:47 +0000 (00:06 +0000)
committerDouglas Gregor <dgregor@apple.com>
Sat, 25 Feb 2012 00:06:47 +0000 (00:06 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@151412 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/CodeGenTypes.cpp

index 2da6cf0f2dcfc1d9f336445537d11ee4d35f8e20..90a953b0c8a1aeb4454bc9a5a80a673bdd232595 100644 (file)
@@ -201,11 +201,8 @@ bool CodeGenTypes::isFuncTypeArgumentConvertible(QualType Ty) {
   // convert it.  Note that getDefinition()==0 is not the same as !isDefinition.
   // The exception is an enumeration type with a fixed underlying type; these
   // can be converted even if they are forward declarations.
-  if (TT->getDecl()->getDefinition() == 0 &&
-      !(isa<EnumDecl>(TT->getDecl()) && 
-        cast<EnumDecl>(TT->getDecl())->isFixed())) {
+  if (TT->isIncompleteType())
     return false;
-  }
   
   // If this is an enum, then it is always safe to convert.
   const RecordType *RT = dyn_cast<RecordType>(TT);