diff options
Diffstat (limited to 'gcc/tree-ssa-phiopt.c')
-rw-r--r-- | gcc/tree-ssa-phiopt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-ssa-phiopt.c b/gcc/tree-ssa-phiopt.c index bbdccf43777..5d7f0e4e03c 100644 --- a/gcc/tree-ssa-phiopt.c +++ b/gcc/tree-ssa-phiopt.c @@ -341,7 +341,7 @@ conditional_replacement (basic_block bb, tree phi, tree arg0, tree arg1) if (old_result) { tree new1; - if (TREE_CODE_CLASS (TREE_CODE (old_result)) != '<') + if (!COMPARISON_CLASS_P (old_result)) return false; new1 = build (TREE_CODE (old_result), TREE_TYPE (result), |