From a0294f53e1a8f00429b5d878c786eb2939a1072f Mon Sep 17 00:00:00 2001 From: Christoph Mallon Date: Thu, 31 May 2007 18:52:39 +0000 Subject: [PATCH] Constify. [r14224] --- ir/ir/iropt.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ir/ir/iropt.c b/ir/ir/iropt.c index f5d731dd7..3173d6bbe 100644 --- a/ir/ir/iropt.c +++ b/ir/ir/iropt.c @@ -3513,7 +3513,8 @@ static int node_cmp_attr_Confirm(ir_node *a, ir_node *b) { /** Compares the attributes of two ASM nodes. */ static int node_cmp_attr_ASM(ir_node *a, ir_node *b) { int i, n; - ir_asm_constraint *ca, *cb; + const ir_asm_constraint *ca; + const ir_asm_constraint *cb; ident **cla, **clb; if (get_ASM_text(a) != get_ASM_text(b)); -- 2.20.1