diff options
author | Douglas Gregor <dgregor@apple.com> | 2010-06-18 21:43:10 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2010-06-18 21:43:10 +0000 |
commit | 8e19890c329279c5ac35ab71a35423d429d80165 (patch) | |
tree | 4ea5594d9a4ed18902583570b3ff764e2daeff9f /lib/Sema/SemaInit.cpp | |
parent | d2c6490385555eaabfaf611d1cf6e89544163c4a (diff) |
Don't complain about missing field initializers when the initializer
list is completely empty, from Lasse Kärkkäinen! Fixes PR7413.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@106320 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/SemaInit.cpp')
-rw-r--r-- | lib/Sema/SemaInit.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Sema/SemaInit.cpp b/lib/Sema/SemaInit.cpp index ac073604ee..9c150593b3 100644 --- a/lib/Sema/SemaInit.cpp +++ b/lib/Sema/SemaInit.cpp @@ -1114,7 +1114,7 @@ void InitListChecker::CheckStructUnionTypes(const InitializedEntity &Entity, } // Emit warnings for missing struct field initializers. - if (CheckForMissingFields && Field != FieldEnd && + if (InitializedSomething && CheckForMissingFields && Field != FieldEnd && !Field->getType()->isIncompleteArrayType() && !DeclType->isUnionType()) { // It is possible we have one or more unnamed bitfields remaining. // Find first (if any) named field and emit warning. |