From e8ea7036e91d0721e08ab2d8db7ff0b8b9fb2d90 Mon Sep 17 00:00:00 2001 From: Mark Mitchell Date: Thu, 20 May 1999 18:10:28 +0000 Subject: [PATCH] decl.c (grokdeclarator): Don't treat [] as indicating a zero-sized array in a typedef. * decl.c (grokdeclarator): Don't treat [] as indicating a zero-sized array in a typedef. From-SVN: r27070 --- gcc/cp/ChangeLog | 3 +++ gcc/cp/decl.c | 3 ++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index d306b09b5e9..70e3a246fe9 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,5 +1,8 @@ 1999-05-20 Mark Mitchell + * decl.c (grokdeclarator): Don't treat [] as indicating a + zero-sized array in a typedef. + * call.c (build_object_call): Don't look at DECL_NAME for a type. (pt.c): Or CP_TYPE_QUALS for an ERROR_MARK. (typeck.c): Or TYPE_MAIN_VARIANT for a type. diff --git a/gcc/cp/decl.c b/gcc/cp/decl.c index ebb15d18172..111ce222fe9 100644 --- a/gcc/cp/decl.c +++ b/gcc/cp/decl.c @@ -10322,7 +10322,8 @@ grokdeclarator (declarator, declspecs, decl_context, initialized, attrlist) continue; /* VC++ spells a zero-sized array with []. */ - if (size == NULL_TREE && decl_context == FIELD && ! staticp) + if (size == NULL_TREE && decl_context == FIELD && ! staticp + && ! RIDBIT_SETP (RID_TYPEDEF, specbits)) size = integer_zero_node; if (size) -- 2.30.2