predicates.md (constm1_operand): Fix comparison.
* config/i386/predicates.md (constm1_operand): Fix comparison. From-SVN: r235635
This commit is contained in:
parent
39d5046452
commit
2ff0cbe5fe
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
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"
|
||||
|
|
Loading…
Add table
Reference in a new issue