From: Matthias Braun Date: Fri, 26 Feb 2010 13:29:27 +0000 (+0000) Subject: fix bug where compound_graph_pathe were consider null X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=fe36fbcb66909a979e16111b8dc8cee19088fede;p=libfirm fix bug where compound_graph_pathe were consider null [r27223] --- diff --git a/ir/be/begnuas.c b/ir/be/begnuas.c index e3d78e5e2..28dd243f1 100644 --- a/ir/be/begnuas.c +++ b/ir/be/begnuas.c @@ -335,6 +335,7 @@ static bool entity_is_null(const ir_entity *entity) } else if (entity_has_compound_ent_values(entity)) { /* I'm too lazy to implement this case as compound graph paths will be * remove anyway in the future */ + return false; } /* uninitialized, NULL is fine */ return true;