From: Michael Beck Date: Wed, 25 Apr 2007 10:07:58 +0000 (+0000) Subject: BugFix: use the maximum as the comments says, NOT the minimum X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=46fdd0c3cbc755a43255270fde6ab0fd097c0583;p=libfirm BugFix: use the maximum as the comments says, NOT the minimum [r13463] --- diff --git a/ir/ana/irmemory.c b/ir/ana/irmemory.c index 90f9175af..0009a8752 100644 --- a/ir/ana/irmemory.c +++ b/ir/ana/irmemory.c @@ -603,7 +603,7 @@ static void check_global_address(ir_node *irn, void *env) { } else return; - if (get_entity_address_taken(ent) == ir_address_not_taken) { + if (get_entity_address_taken(ent) >= ir_address_taken) { /* Already at the maximum. */ return; }