The struct alignment of long double on 32 bit Darwin is 16 bytes.
[cparser] / symbol_table.c
index 16db061..b756e8e 100644 (file)
@@ -30,10 +30,11 @@ struct obstack symbol_obstack;
 static inline
 void init_symbol_table_entry(symbol_t *entry, const char *string)
 {
-       entry->string = string;
-       entry->ID     = T_IDENTIFIER;
-       entry->pp_ID  = TP_IDENTIFIER;
-       entry->entity = NULL;
+       entry->string        = string;
+       entry->ID            = T_IDENTIFIER;
+       entry->pp_ID         = TP_IDENTIFIER;
+       entry->entity        = NULL;
+       entry->pp_definition = NULL;
 }
 
 #define HashSet                    symbol_table_t
@@ -66,9 +67,9 @@ void init_symbol_table_entry(symbol_t *entry, const char *string)
 
 static symbol_table_t  symbol_table;
 
-symbol_t *symbol_table_insert(const char *symbol)
+symbol_t *symbol_table_insert(const char *string)
 {
-       return _symbol_table_insert(&symbol_table, symbol);
+       return _symbol_table_insert(&symbol_table, string);
 }
 
 void init_symbol_table(void)