parser: Remove the unused attribute alignment from struct declaration_specifiers_t.
[cparser] / entity_t.h
index 61d363b..f2ee603 100644 (file)
@@ -5,6 +5,7 @@
 #ifndef ENTITY_T_H
 #define ENTITY_T_H
 
+#include "ast.h"
 #include "symbol.h"
 #include "entity.h"
 #include "attribute.h"
@@ -140,9 +141,6 @@ struct enum_t {
        entity_base_t  base;
        entity_t      *alias; /* used for name mangling of anonymous types */
        bool           complete : 1;
-
-       /* ast2firm info */
-       ir_type       *irtype;
 };
 
 struct enum_value_t {