converted to doxygen comments
authorMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Thu, 30 Jan 2003 18:29:57 +0000 (18:29 +0000)
committerMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Thu, 30 Jan 2003 18:29:57 +0000 (18:29 +0000)
[r696]

ir/ir/irmode_t.h

index 10dbe56..24606a1 100644 (file)
@@ -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 */
 };