Commit 2ff0cbe5 by Uros Bizjak Committed by Uros Bizjak

predicates.md (constm1_operand): Fix comparison.

	* config/i386/predicates.md (constm1_operand): Fix comparison.

From-SVN: r235635
parent 39d50464
2016-04-29 Uros Bizjak <ubizjak@gmail.com>
* config/i386/predicates.md (constm1_operand): Fix comparison.
2016-04-29 Claudiu Zissulescu <claziss@synopsys.com>
* testsuite/gcc.target/arc/ieee_eq.c: New test.
......
......@@ -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"
......
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