little cleanup
[libfirm] / ir / tr / type_t.h
index a5699ea..63d0170 100644 (file)
@@ -114,7 +114,7 @@ typedef union {
 } tp_attr;
 
 /** the structure of a type */
-struct type {
+struct ir_type {
   firm_kind kind;          /**< the firm kind, must be k_type */
   const tp_op *type_op;    /**< the type operation of the type */
   ident *name;             /**< The name of the type */
@@ -444,7 +444,8 @@ _set_method_calling_convention(type *method, unsigned cc_mask) {
 #define get_type_mode(tp)                 _get_type_mode(tp)
 #define get_type_ident(tp)                _get_type_ident(tp)
 #define set_type_ident(tp, id)            _set_type_ident(tp, id)
-#define get_type_size(tp)                 _get_type_size(tp)
+#define get_type_size_bits(tp)            _get_type_size_bits(tp)
+#define get_type_size_bytes(tp)           _get_type_size_bytes(tp)
 #define get_type_state(tp)                _get_type_state(tp)
 #define get_type_visited(tp)              _get_type_visited(tp)
 #define set_type_visited(tp, num)         _set_type_visited(tp, num)