From fe36fbcb66909a979e16111b8dc8cee19088fede Mon Sep 17 00:00:00 2001 From: Matthias Braun Date: Fri, 26 Feb 2010 13:29:27 +0000 Subject: [PATCH] fix bug where compound_graph_pathe were consider null [r27223] --- ir/be/begnuas.c | 1 + 1 file changed, 1 insertion(+) 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; -- 2.20.1