From fd3244c49ed0e5b53d698d4fb1e8c58488ce1ecb Mon Sep 17 00:00:00 2001 From: Michael Beck Date: Tue, 1 Nov 2005 11:44:56 +0000 Subject: [PATCH] more inlining [r6859] --- ir/ir/irprog_t.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ir/ir/irprog_t.h b/ir/ir/irprog_t.h index 2c06cd9b4..be51ef03f 100644 --- a/ir/ir/irprog_t.h +++ b/ir/ir/irprog_t.h @@ -105,7 +105,7 @@ _get_irp_n_irgs(void) { static INLINE ir_graph * _get_irp_irg(int pos){ if (get_visit_pseudo_irgs()) return get_irp_allirg(pos); - assert(0 <= pos && pos <= get_irp_n_irgs()); + assert(0 <= pos && pos <= _get_irp_n_irgs()); return irp->graphs[pos]; } -- 2.20.1