From c3f885132674f7cd7d0c77aa89cef69a537a0171 Mon Sep 17 00:00:00 2001 From: Michael Beck Date: Mon, 16 Jan 2006 02:59:25 +0000 Subject: [PATCH] BugFix: get_opt_ldst_only_null_ptr_exceptions() was checked wrong [r7246] --- ir/ir/iropt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ir/ir/iropt.c b/ir/ir/iropt.c index 8b3afb6ee..d9ec66d4e 100644 --- a/ir/ir/iropt.c +++ b/ir/ir/iropt.c @@ -1243,7 +1243,7 @@ static ir_node *equivalent_node_Proj(ir_node *n) /* Remove dead control flow -- early gigo(). */ n = new_Bad(); } - else if (! get_opt_ldst_only_null_ptr_exceptions()) { + else if (get_opt_ldst_only_null_ptr_exceptions()) { ir_op *op = get_irn_op(a); if (op == op_Load || op == op_Store) { -- 2.20.1