enable Rot constant folding (why was it commented out)
authorMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Thu, 29 Jul 2004 13:03:17 +0000 (13:03 +0000)
committerMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Thu, 29 Jul 2004 13:03:17 +0000 (13:03 +0000)
[r3639]

ir/ir/iropt.c

index 3dab4dd..72af25c 100644 (file)
@@ -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;
 }