From 963b305a192fbff27ef32fd96e25be74a863857c Mon Sep 17 00:00:00 2001 From: Michael Beck Date: Wed, 30 May 2007 20:48:22 +0000 Subject: [PATCH] placed the call the _get_irn_intra_arity() again into the assert: no need to execute it with NDEBUG: revert change 14194 [r14203] --- ir/ir/irnode_t.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ir/ir/irnode_t.h b/ir/ir/irnode_t.h index 74f5290c5..6feae2fe8 100644 --- a/ir/ir/irnode_t.h +++ b/ir/ir/irnode_t.h @@ -443,9 +443,8 @@ static INLINE ir_node * _get_irn_intra_n(const ir_node *node, int n) { ir_node *nn; - int arn = _get_irn_intra_arity(node); assert(node); - assert(-1 <= n && n < arn); + assert(-1 <= n && n < _get_irn_intra_arity(node)); nn = node->in[n + 1]; if (nn == NULL) { -- 2.20.1