Fixes misc. flexible array bugs in c++ (PR7029).

llvm-svn: 104733
This commit is contained in:
Fariborz Jahanian 2010-05-26 20:19:07 +00:00
parent 1b08572a66
commit 1138ba6693
4 changed files with 68 additions and 1 deletions

View File

@ -1828,6 +1828,8 @@ def ext_variable_sized_type_in_struct : ExtWarn<
def err_flexible_array_empty_struct : Error<
"flexible array %0 not allowed in otherwise empty struct">;
def err_flexible_array_has_nonpod_type : Error<
"flexible array %0 must have a non-dependent, non-POD type">;
def ext_flexible_array_in_struct : Extension<
"%0 may not be nested in a struct due to flexible array member">;
def ext_flexible_array_in_array : Extension<

View File

@ -6136,6 +6136,15 @@ void Sema::ActOnFields(Scope* S,
EnclosingDecl->setInvalidDecl();
continue;
}
if (!FD->getType()->isDependentType() &&
!Context.getBaseElementType(FD->getType())->isPODType()) {
Diag(FD->getLocation(), diag::err_flexible_array_has_nonpod_type)
<< FD->getDeclName();
FD->setInvalidDecl();
EnclosingDecl->setInvalidDecl();
continue;
}
// Okay, we have a legal flexible array member at the end of the struct.
if (Record)
Record->setHasFlexibleArrayMember(true);

View File

@ -1892,9 +1892,15 @@ Sema::SetBaseOrMemberInitializers(CXXConstructorDecl *Constructor,
// Fields.
for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
E = ClassDecl->field_end(); Field != E; ++Field)
E = ClassDecl->field_end(); Field != E; ++Field) {
if ((*Field)->getType()->isIncompleteArrayType()) {
assert(ClassDecl->hasFlexibleArrayMember() &&
"Incomplete array type is not valid");
continue;
}
if (CollectFieldInitializer(Info, *Field, *Field))
HadError = true;
}
NumInitializers = Info.AllToInit.size();
if (NumInitializers > 0) {
@ -4577,6 +4583,11 @@ void Sema::DefineImplicitCopyAssignment(SourceLocation CurrentLocation,
}
QualType FieldType = Field->getType().getNonReferenceType();
if (FieldType->isIncompleteArrayType()) {
assert(ClassDecl->hasFlexibleArrayMember() &&
"Incomplete array type is not valid");
continue;
}
// Build references to the field in the object we're copying from and to.
CXXScopeSpec SS; // Intentionally empty

View File

@ -0,0 +1,45 @@
// RUN: %clang_cc1 -fsyntax-only -verify %s
// pr7029
template <class Key, class T> struct QMap
{
void insert(const Key &, const T &);
T v;
};
template <class Key, class T>
void QMap<Key, T>::insert(const Key &, const T &avalue)
{
v = avalue;
}
struct inotify_event
{
int wd;
// clang doesn't like '[]':
// cannot initialize a parameter of type 'void *' with an rvalue of type 'char (*)[]'
char name [];
};
void foo()
{
inotify_event event;
inotify_event* ptr = &event;
inotify_event event1 = *ptr;
*ptr = event;
QMap<int, inotify_event> eventForId;
eventForId.insert(ptr->wd, *ptr);
}
struct S {
virtual void foo();
};
struct X {
int blah;
S strings[]; // expected-error {{flexible array 'strings' must have a non-dependent, non-POD type}}
};