From 0adeac2c1c2866b18b1ab20832860a3bdb0718b7 Mon Sep 17 00:00:00 2001 From: Michael Beck Date: Fri, 11 Feb 2005 12:02:31 +0000 Subject: [PATCH] added doxygen comments [r5098] --- ir/ir/irnode_t.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ir/ir/irnode_t.h b/ir/ir/irnode_t.h index efcb9f035..6edc48f8f 100644 --- a/ir/ir/irnode_t.h +++ b/ir/ir/irnode_t.h @@ -169,14 +169,14 @@ typedef struct { ent_volatility volatility; /**< the volatility of a Store operation */ } store_attr; -typedef pn_Cmp confirm_attr; /** Attribute to hold compare operation */ +typedef pn_Cmp confirm_attr; /**< Attribute to hold compare operation */ /** * Edge info to put into an irn. */ typedef struct _irn_edge_info_t { - struct list_head outs_head; - int out_count; + struct list_head outs_head; /**< The list of all outs */ + int out_count; /**< number of outs in the list */ } irn_edge_info_t; @@ -243,7 +243,7 @@ struct ir_node { struct section *sec; #endif #if FIRM_EDGES_INPLACE - irn_edge_info_t edge_info; + irn_edge_info_t edge_info; /**< everlasting out edges */ #endif /* ------- Opcode depending fields -------- */ attr attr; /**< attribute of this node. Depends on opcode. -- 2.20.1