From: Michael Beck Date: Sun, 2 Apr 2006 11:17:51 +0000 (+0000) Subject: fixed doxygen comments X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=0493af5aa3bca8dfb09e1a49135b5ad1e9e97020;p=libfirm fixed doxygen comments --- diff --git a/ir/be/ppc32/ppc32_nodes_attr.h b/ir/be/ppc32/ppc32_nodes_attr.h index 3737f279a..51cc8c8c0 100644 --- a/ir/be/ppc32/ppc32_nodes_attr.h +++ b/ir/be/ppc32/ppc32_nodes_attr.h @@ -5,8 +5,8 @@ typedef struct _ppc32_register_req_t { const arch_register_req_t req; - int same_pos; /**<< in case of "should be same" we need to remember the pos to get the irn */ - int different_pos; /**<< in case of "should be different" we need to remember the pos to get the irn */ + int same_pos; /**< in case of "should be same" we need to remember the pos to get the irn */ + int different_pos; /**< in case of "should be different" we need to remember the pos to get the irn */ } ppc32_register_req_t; typedef struct @@ -18,7 +18,12 @@ typedef struct typedef enum { - ppc32_ac_None, ppc32_ac_Const, ppc32_ac_SymConst, ppc32_ac_FrameEntity, ppc32_ac_RlwimiConst, ppc32_ac_BranchProj, + ppc32_ac_None, + ppc32_ac_Const, + ppc32_ac_SymConst, + ppc32_ac_FrameEntity, + ppc32_ac_RlwimiConst, + ppc32_ac_BranchProj, ppc32_ac_Offset } ppc32_attr_content_type; @@ -27,13 +32,13 @@ typedef enum { } ppc32_attr_offset_mode; typedef struct _ppc32_attr_t { - arch_irn_flags_t flags; /**<< indicating if spillable, rematerializeable ... etc. */ - int n_res; /**<< number of results for this node */ + arch_irn_flags_t flags; /**< indicating if spillable, rematerializeable ... etc. */ + int n_res; /**< number of results for this node */ - const ppc32_register_req_t **in_req; /**<< register requirements for arguments */ - const ppc32_register_req_t **out_req; /**<< register requirements for results */ + const ppc32_register_req_t **in_req; /**< register requirements for arguments */ + const ppc32_register_req_t **out_req; /**< register requirements for results */ - const arch_register_t **slots; /**<< register slots for assigned registers */ + const arch_register_t **slots; /**< register slots for assigned registers */ ppc32_attr_content_type content_type; ppc32_attr_offset_mode offset_mode;