Commit ecec9b57 by DJ Delorie Committed by DJ Delorie

* config/rl78/rl78-expand.md (one_cmplqi2): Make constant signed.

From-SVN: r205981
parent 958d06df
2013-12-13 DJ Delorie <dj@redhat.com> 2013-12-13 DJ Delorie <dj@redhat.com>
* config/rl78/rl78-expand.md (one_cmplqi2): Make constant signed.
* config/msp430/msp430.md (movqi): replace general_operand with * config/msp430/msp430.md (movqi): replace general_operand with
msp_general_operand and nonimmediate_operand with msp_general_operand and nonimmediate_operand with
msp_nonimmediate_operand to allow volatile operands. msp_nonimmediate_operand to allow volatile operands.
...@@ -177,7 +177,7 @@ ...@@ -177,7 +177,7 @@
(define_expand "one_cmplqi2" (define_expand "one_cmplqi2"
[(set (match_operand:QI 0 "nonimmediate_operand") [(set (match_operand:QI 0 "nonimmediate_operand")
(xor:QI (match_operand:QI 1 "general_operand") (xor:QI (match_operand:QI 1 "general_operand")
(const_int 255))) (const_int -1)))
] ]
"" ""
"if (rl78_force_nonfar_2 (operands, gen_one_cmplqi2)) "if (rl78_force_nonfar_2 (operands, gen_one_cmplqi2))
......
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