* 1750a.md: Don't use hex format for a const_int.

From-SVN: r47197
This commit is contained in:
Kaveh R. Ghazi 2001-11-20 04:37:12 +00:00 committed by Kaveh Ghazi
parent e98f90d363
commit 79663a627b
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2001-11-19 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* 1750a.md: Don't use hex format for a const_int.
2001-11-19 Geoffrey Keating <geoffk@redhat.com>
* expmed.c (extract_bit_field): Don't create invalid SUBREGs.

View File

@ -809,7 +809,7 @@
(define_insn ""
[(set (match_operand:QI 0 "register_operand" "=r")
(ior:QI (match_operand:QI 1 "register_operand" "0")
(lshiftrt:QI (const_int 0x8000)
(lshiftrt:QI (const_int 32768)
(match_operand:QI 2 "register_operand" "r"))))]
""
"svbr r%2,%r0")
@ -818,7 +818,7 @@
(define_insn ""
[(set (match_operand:QI 0 "general_operand" "=r")
(and:QI (match_operand:QI 1 "general_operand" "0")
(not:QI (lshiftrt:QI (const_int 0x8000)
(not:QI (lshiftrt:QI (const_int 32768)
(match_operand:QI 2 "register_operand" "r")))))]
""
"rvbr r%2,%r0")