From: Michael Beck Date: Wed, 30 May 2007 20:48:22 +0000 (+0000) Subject: placed the call the _get_irn_intra_arity() again into the assert: no need to execute... X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=963b305a192fbff27ef32fd96e25be74a863857c;p=libfirm placed the call the _get_irn_intra_arity() again into the assert: no need to execute it with NDEBUG: revert change 14194 [r14203] --- 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) {