From 5546c700615ec34aefe3b3708d3aa974a53c3aae Mon Sep 17 00:00:00 2001 From: Michael Beck Date: Thu, 29 Jul 2004 13:03:17 +0000 Subject: [PATCH] enable Rot constant folding (why was it commented out) [r3639] --- ir/ir/iropt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ir/ir/iropt.c b/ir/ir/iropt.c index 3dab4dd39..72af25c9d 100644 --- a/ir/ir/iropt.c +++ b/ir/ir/iropt.c @@ -311,7 +311,7 @@ static tarval *computed_value_Rot(ir_node *n) tarval *tb = value_of(b); if ((ta != tarval_bad) && (tb != tarval_bad)) { - /* return tarval_rot (ta, tb); */ + return tarval_rot (ta, tb); } return tarval_bad; } -- 2.20.1