From 8767a8c7b26d78ef4c03404e16258e12a91cc595 Mon Sep 17 00:00:00 2001 From: Christoph Mallon Date: Thu, 5 May 2011 16:55:23 +0200 Subject: [PATCH] Fix embarrassing typo in fp-vrp. --- ir/opt/fp-vrp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ir/opt/fp-vrp.c b/ir/opt/fp-vrp.c index b61b1edaa..e7ba49a31 100644 --- a/ir/opt/fp-vrp.c +++ b/ir/opt/fp-vrp.c @@ -324,7 +324,7 @@ undefined: if ((get_Confirm_relation(irn) & ~ir_relation_unordered) == ir_relation_equal) { bitinfo* const bound_b = get_bitinfo(get_Confirm_bound(irn)); z = tarval_and(z, bound_b->z); - z = tarval_or( o, bound_b->o); + o = tarval_or( o, bound_b->o); } break; } -- 2.20.1