placed the call the _get_irn_intra_arity() again into the assert: no need to execute...
authorMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Wed, 30 May 2007 20:48:22 +0000 (20:48 +0000)
committerMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Wed, 30 May 2007 20:48:22 +0000 (20:48 +0000)
[r14203]

ir/ir/irnode_t.h

index 74f5290..6feae2f 100644 (file)
@@ -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) {