mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-03-08 16:47:25 +08:00
Use unsigned HOST_WIDE_INT, not unsigned.
From-SVN: r14402
This commit is contained in:
parent
7834ab3923
commit
bb21487f9b
@ -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))
|
||||
|
Loading…
Reference in New Issue
Block a user