that a type is not an aggregate type.
+2009-09-21 Keith Seitz <keiths@redhat.com>
+
+ * c-exp.y (qualified_name): Call CHECK_TYPEDEF before deciding
+ that a type is not an aggregate type.
+
2009-09-21 Jason Orendorff <jason.orendorff@gmail.com>
PR python/10666:
qualified_name: typebase COLONCOLON name
{
struct type *type = $1;
+ CHECK_TYPEDEF (type);
if (TYPE_CODE (type) != TYPE_CODE_STRUCT
&& TYPE_CODE (type) != TYPE_CODE_UNION
&& TYPE_CODE (type) != TYPE_CODE_NAMESPACE)
{
struct type *type = $1;
struct stoken tmp_token;
+ CHECK_TYPEDEF (type);
if (TYPE_CODE (type) != TYPE_CODE_STRUCT
&& TYPE_CODE (type) != TYPE_CODE_UNION
&& TYPE_CODE (type) != TYPE_CODE_NAMESPACE)