diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-04-23 02:01:53 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-04-23 02:01:53 +0000 |
commit | d3858e149d0aa557d5d610056b10fef09b67c463 (patch) | |
tree | 4d5c798a9511b850de0000a74818df18ef340983 /gcc/tree-vrp.c | |
parent | 095dcfa3b1e6d64902cdac04c689fbb3cc1274b3 (diff) | |
download | gcc-d3858e149d0aa557d5d610056b10fef09b67c463.tar.gz |
PR tree-optimization/21088
* fold-const.c (fold_unary, fold_binary, fold_ternary):
Export.
* tree-vrp.c (compare_values): Use fold_binary to compare
pointers. Use boolean_type_node as the type of a comparison
expression being folded.
* tree.h: Add prototypes for fold_unary, fold_binary,
fold_ternary.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@98600 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-vrp.c')
-rw-r--r-- | gcc/tree-vrp.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/tree-vrp.c b/gcc/tree-vrp.c index bb68df6ccc3..4a0859ef333 100644 --- a/gcc/tree-vrp.c +++ b/gcc/tree-vrp.c @@ -416,17 +416,17 @@ compare_values (tree val1, tree val2) return 0; /* If VAL1 is a lower address than VAL2, return -1. */ - t = fold (build2 (LT_EXPR, TREE_TYPE (val1), val1, val2)); + t = fold_binary (LT_EXPR, boolean_type_node, val1, val2); if (t == boolean_true_node) return -1; /* If VAL1 is a higher address than VAL2, return +1. */ - t = fold (build2 (GT_EXPR, TREE_TYPE (val1), val1, val2)); + t = fold_binary (GT_EXPR, boolean_type_node, val1, val2); if (t == boolean_true_node) return 1; /* If VAL1 is different than VAL2, return +2. */ - t = fold (build2 (NE_EXPR, TREE_TYPE (val1), val1, val2)); + t = fold_binary (NE_EXPR, boolean_type_node, val1, val2); if (t == boolean_true_node) return 2; |