From 3020fc71419177431d94560b33dba90f807860ff Mon Sep 17 00:00:00 2001 From: dpatel Date: Wed, 17 Nov 2004 00:56:57 +0000 Subject: * optabs.c (vector_compare_rtx): Fix COMPARISON_CLASS_P use. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@90781 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/optabs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gcc/optabs.c') diff --git a/gcc/optabs.c b/gcc/optabs.c index 3c8b91f16f3..1887772ab47 100644 --- a/gcc/optabs.c +++ b/gcc/optabs.c @@ -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 -- cgit v1.2.1