* predict.c (expr_expected_value): Use *_CLASS_P macros.

From-SVN: r87763
This commit is contained in:
Jakub Jelinek 2004-09-20 18:56:12 +02:00 committed by Jakub Jelinek
parent 1cdcb2cfd1
commit 096759ebec
2 changed files with 6 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2004-09-20 Jakub Jelinek <jakub@redhat.com>
* predict.c (expr_expected_value): Use *_CLASS_P macros.
2004-09-20 Daniel Berlin <dberlin@dberlin.org>
* tree-ssa-pre.c (compute_antic_aux): Use malloc'd worklist, to avoid

View File

@ -944,8 +944,7 @@ expr_expected_value (tree expr, bitmap visited)
return TREE_VALUE (TREE_CHAIN (TREE_OPERAND (expr, 1)));
}
}
if (TREE_CODE_CLASS (TREE_CODE (expr)) == '2'
|| TREE_CODE_CLASS (TREE_CODE (expr)) == '<')
if (BINARY_CLASS_P (expr) || COMPARISON_CLASS_P (expr))
{
tree op0, op1, res;
op0 = expr_expected_value (TREE_OPERAND (expr, 0), visited);
@ -959,7 +958,7 @@ expr_expected_value (tree expr, bitmap visited)
return res;
return NULL;
}
if (TREE_CODE_CLASS (TREE_CODE (expr)) == '1')
if (UNARY_CLASS_P (expr))
{
tree op0, res;
op0 = expr_expected_value (TREE_OPERAND (expr, 0), visited);