Commit 8a45d448 by Devang Patel Committed by Devang Patel

* optabs.c (vector_compare_rtx): Fix COMPARISON_CLASS_P use.

From-SVN: r90781
parent c9387915
2004-11-16 Devang Patel <dpatel@apple.com>
* optabs.c (vector_compare_rtx): Fix COMPARISON_CLASS_P use.
2004-11-16 Kazu Hirata <kazu@cs.umass.edu>
* expmed.c, ra-colorize.c: Fix comment typos.
......
......@@ -5082,7 +5082,7 @@ vector_compare_rtx (tree cond, bool unsignedp, enum insn_code icode)
tree t_op0, t_op1;
rtx rtx_op0, rtx_op1;
if (COMPARISON_CLASS_P (cond))
if (!COMPARISON_CLASS_P (cond))
{
/* This is unlikely. While generating VEC_COND_EXPR,
auto vectorizer ensures that condition is a relational
......
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