X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fbe%2Fbenode.c;h=06f44d8e1b3412a83f258c55feeb0b52153aa1b3;hb=d300330b1e6df8c8914b8fb70cf38ee1c8ca2634;hp=00abf3ce74ac9dcdec938c69c3bb39c3c260c0a5;hpb=93dbf5f7bfa39aac0079f77c9b787164d122dca7;p=libfirm diff --git a/ir/be/benode.c b/ir/be/benode.c index 00abf3ce7..06f44d8e1 100644 --- a/ir/be/benode.c +++ b/ir/be/benode.c @@ -177,7 +177,7 @@ static int _node_cmp_attr(const be_node_attr_t *a, const be_node_attr_t *b) { * * @return zero if both nodes have identically attributes */ -static int node_cmp_attr(const ir_node *a, const ir_node *b) { +static int node_cmp_attr(ir_node *a, ir_node *b) { const be_node_attr_t *a_attr = get_irn_attr_const(a); const be_node_attr_t *b_attr = get_irn_attr_const(b); @@ -189,7 +189,7 @@ static int node_cmp_attr(const ir_node *a, const ir_node *b) { * * @return zero if both nodes have identically attributes */ -static int FrameAddr_cmp_attr(const ir_node *a, const ir_node *b) { +static int FrameAddr_cmp_attr(ir_node *a, ir_node *b) { const be_frame_attr_t *a_attr = get_irn_attr_const(a); const be_frame_attr_t *b_attr = get_irn_attr_const(b); @@ -204,7 +204,7 @@ static int FrameAddr_cmp_attr(const ir_node *a, const ir_node *b) { * * @return zero if both nodes have identically attributes */ -static int Return_cmp_attr(const ir_node *a, const ir_node *b) { +static int Return_cmp_attr(ir_node *a, ir_node *b) { const be_return_attr_t *a_attr = get_irn_attr_const(a); const be_return_attr_t *b_attr = get_irn_attr_const(b); @@ -221,7 +221,7 @@ static int Return_cmp_attr(const ir_node *a, const ir_node *b) { * * @return zero if both nodes have identically attributes */ -static int IncSP_cmp_attr(const ir_node *a, const ir_node *b) { +static int IncSP_cmp_attr(ir_node *a, ir_node *b) { const be_incsp_attr_t *a_attr = get_irn_attr_const(a); const be_incsp_attr_t *b_attr = get_irn_attr_const(b); @@ -236,7 +236,7 @@ static int IncSP_cmp_attr(const ir_node *a, const ir_node *b) { * * @return zero if both nodes have identically attributes */ -static int Call_cmp_attr(const ir_node *a, const ir_node *b) { +static int Call_cmp_attr(ir_node *a, ir_node *b) { const be_call_attr_t *a_attr = get_irn_attr_const(a); const be_call_attr_t *b_attr = get_irn_attr_const(b);