Commit c933f71e by Kazu Hirata Committed by Kazu Hirata

* fold-const.c (fold_binary): Use code instead of t.

From-SVN: r95970
parent 0022eee3
......@@ -4,6 +4,8 @@
(fold_rtx): Call fold_rtx_subreg and fold_rtx_mem to handle
SUBREG and MEM, respectively.
* fold-const.c (fold_binary): Use code instead of t.
2005-03-06 Kazu Hirata <kazu@cs.umass.edu>
* fold-const.c (fold_binary): Avoid directly using the original
......
......@@ -8727,7 +8727,7 @@ fold_binary (tree expr)
/* If this is a comparison of two exprs that look like an
ARRAY_REF of the same object, then we can fold this to a
comparison of the two offsets. */
if (COMPARISON_CLASS_P (t))
if (TREE_CODE_CLASS (code) == tcc_comparison)
{
tree base0, offset0, base1, offset1;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment