Commit bb21487f by Michael Meissner

Use unsigned HOST_WIDE_INT, not unsigned.

From-SVN: r14402
parent 7834ab39
......@@ -1671,6 +1671,7 @@
"bla __quous"
[(set_attr "type" "idiv")])
;; Logical instructions
(define_insn "andsi3"
[(set (match_operand:SI 0 "gpc_reg_operand" "=r,r,r,r")
(and:SI (match_operand:SI 1 "gpc_reg_operand" "%r,r,r,r")
......@@ -5225,7 +5226,7 @@
(define_split
[(set (match_operand:SI 0 "gpc_reg_operand" "")
(match_operand:SI 1 "const_int_operand" ""))]
"(unsigned) (INTVAL (operands[1]) + 0x8000) >= 0x10000
"(unsigned HOST_WIDE_INT) (INTVAL (operands[1]) + 0x8000) >= 0x10000
&& (INTVAL (operands[1]) & 0xffff) != 0"
[(set (match_dup 0)
(match_dup 2))
......
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