adapt to latest firm (no need to explicitely invoke switch lowerer, backend does...
[cparser] / type.h
diff --git a/type.h b/type.h
index cf8730f..de382d6 100644 (file)
--- a/type.h
+++ b/type.h
@@ -211,7 +211,16 @@ atomic_type_kind_t find_unsigned_int_atomic_type_kind_for_size(unsigned size);
 
 const char *get_atomic_kind_name(atomic_type_kind_t kind);
 
+/**
+ * Finish the construction of a struct type by calculating its size, offsets,
+ * alignment.
+ */
 void layout_struct_type(compound_type_t *type);
+
+/**
+ * Finish the construction of an union type by calculating
+ * its size and alignment.
+ */
 void layout_union_type(compound_type_t *type);
 
 #endif