From f99cb544404632798272f958e389176d585c9e73 Mon Sep 17 00:00:00 2001 From: Michael Beck Date: Wed, 30 May 2007 16:18:41 +0000 Subject: [PATCH] renamed reserved word asm :-) [r14190] --- ir/ir/irnode.c | 6 +++--- ir/ir/irnode.h | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ir/ir/irnode.c b/ir/ir/irnode.c index fae9ff971..99a09a4bc 100644 --- a/ir/ir/irnode.c +++ b/ir/ir/irnode.c @@ -2337,9 +2337,9 @@ void set_Pin_op(ir_node *pin, ir_node *node) { } /* Return the assembler text of an ASM pseudo node. */ -const char *get_ASM_text(const ir_node *asm) { - assert(asm->op == op_ASM); - return get_id_str(asm->attr.asm.asm_text); +const char *get_ASM_text(const ir_node *node) { + assert(node->op == op_ASM); + return get_id_str(node->attr.asm.asm_text); } diff --git a/ir/ir/irnode.h b/ir/ir/irnode.h index 58190d18d..22aec2b81 100644 --- a/ir/ir/irnode.h +++ b/ir/ir/irnode.h @@ -1154,7 +1154,7 @@ ir_node *get_Pin_op(const ir_node *pin); void set_Pin_op(ir_node *pin, ir_node *node); /** Return the assembler text of an ASM pseudo node. */ -const char *get_ASM_text(const ir_node *asm); +const char *get_ASM_text(const ir_node *node); /* * -- 2.20.1