fix one more this-is-not-a-constant error. test included

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@55609 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Nuno Lopes 2008-09-01 18:42:41 +00:00
Родитель f7e37ce840
Коммит 73419bf6cb
2 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -1269,6 +1269,9 @@ bool Sema::CheckForConstantInitializer(Expr *Init, QualType DclT) {
if (Init->getType()->isArrayType())
return false;
if (Init->getType()->isFunctionType())
return false;
Diag(Init->getExprLoc(), diag::err_init_element_not_constant,
Init->getSourceRange());
return true;

Просмотреть файл

@ -235,3 +235,6 @@ struct soft_segment_descriptor gdt_segs[] = {
{(int) &dblfault_tss},
{ (int)xpto},
};
static void sppp_ipv6cp_up();
const struct {} ipcp = { sppp_ipv6cp_up }; //expected-warning{{empty struct extension}} expected-warning{{excess elements in array initializer}}