From: uros Date: Fri, 29 Apr 2016 12:00:48 +0000 (+0000) Subject: * config/i386/predicates.md (constm1_operand): Fix comparison. X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=833ec5d79d440f244787f6aac8fc68424ce2dbbb;p=thirdparty%2Fgcc.git * config/i386/predicates.md (constm1_operand): Fix comparison. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@235635 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index d3fde07a4bd1..219d42374f43 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2016-04-29 Uros Bizjak + + * config/i386/predicates.md (constm1_operand): Fix comparison. + 2016-04-29 Claudiu Zissulescu * testsuite/gcc.target/arc/ieee_eq.c: New test. diff --git a/gcc/config/i386/predicates.md b/gcc/config/i386/predicates.md index 1980a620c870..d15dae457941 100644 --- a/gcc/config/i386/predicates.md +++ b/gcc/config/i386/predicates.md @@ -678,7 +678,7 @@ ;; Match exactly -1. (define_predicate "constm1_operand" (and (match_code "const_int") - (match_test "op = constm1_rtx"))) + (match_test "op == constm1_rtx"))) ;; Match exactly eight. (define_predicate "const8_operand"