From 840186706600440a55f7e09739ae75e4ca6fab5c Mon Sep 17 00:00:00 2001 From: Michael Beck Date: Thu, 1 Jun 2006 14:00:08 +0000 Subject: [PATCH] BugFix: all flags where deleted when layout state was set [r7852] --- ir/tr/type.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ir/tr/type.c b/ir/tr/type.c index 9c7f4ebd3..1eca6d4d0 100644 --- a/ir/tr/type.c +++ b/ir/tr/type.c @@ -449,7 +449,7 @@ set_type_state(ir_type *tp, type_state state) { if (state == layout_fixed) tp->flags |= tf_layout_fixed; else - tp->flags &= tf_layout_fixed; + tp->flags &= ~tf_layout_fixed; } unsigned long (get_type_visited)(const ir_type *tp) { -- 2.20.1