From: Michael Beck Date: Thu, 30 Jan 2003 18:29:57 +0000 (+0000) Subject: converted to doxygen comments X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=4e3a6b9cb57f7fd434fbb5bedb65cfa3c558b77a;p=libfirm converted to doxygen comments [r696] --- diff --git a/ir/ir/irmode_t.h b/ir/ir/irmode_t.h index 10dbe5608..24606a186 100644 --- a/ir/ir/irmode_t.h +++ b/ir/ir/irmode_t.h @@ -8,14 +8,14 @@ struct ir_mode { modecode code; - ident *name; /* Name of this mode */ - int size; /* size of the mode in Bytes. */ - int ld_align; /* ld means log2 */ - tarval *min; /* largest value to be represented by this mode */ - tarval *max; /* smallest value to be represented by this mode */ - tarval *null; /* Representation of zero in this mode */ - unsigned fsigned:1; /* signedness of this mode */ - unsigned ffloat:1; /* true if this is a float */ + ident *name; /**< Name of this mode */ + int size; /**< size of the mode in Bytes. */ + int ld_align; /**< ld means log2 */ + tarval *min; /**< largest value to be represented by this mode */ + tarval *max; /**< smallest value to be represented by this mode */ + tarval *null; /**< Representation of zero in this mode */ + unsigned fsigned:1; /**< signedness of this mode */ + unsigned ffloat:1; /**< true if this is a float */ };