From 301ca1d3eb70a426839d911520e97771fe372441 Mon Sep 17 00:00:00 2001 From: Johannes Spallek Date: Thu, 11 May 2006 13:05:56 +0000 Subject: [PATCH] Fixed creation of is_$arch_*() get_$arch_irn_opcode() now returns -1 if it's not a $arch operation --- ir/be/scripts/generate_new_opcodes.pl | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/ir/be/scripts/generate_new_opcodes.pl b/ir/be/scripts/generate_new_opcodes.pl index 86b5a1c91..c54f4fa29 100755 --- a/ir/be/scripts/generate_new_opcodes.pl +++ b/ir/be/scripts/generate_new_opcodes.pl @@ -88,7 +88,7 @@ foreach my $op (keys(%nodes)) { push(@obst_opvar, "ir_op *op_$op = NULL;\n"); push(@obst_get_opvar, "ir_op *get_op_$op(void) { return op_$op; }\n"); - push(@obst_get_opvar, "int is_$op(const ir_node *n) { return get_irn_opcode(n) == iro_$op; }\n\n"); + push(@obst_get_opvar, "int is_$op(const ir_node *n) { return get_$arch\_irn_opcode(n) == iro_$op; }\n\n"); push(@obst_is_archirn, "is_$op(node)"); @@ -348,8 +348,9 @@ int is_$arch\_irn(const ir_node *node) { } int get_$arch\_irn_opcode(const ir_node *node) { - assert(is_$arch\_irn(node)); - return get_irn_opcode(node) - $arch\_opcode_start; + if (is_$arch\_irn(node)) + return get_irn_opcode(node) - $arch\_opcode_start; + return -1; } ENDOFISIRN -- 2.20.1