Commit 79663a62 by Kaveh R. Ghazi Committed by Kaveh Ghazi

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

From-SVN: r47197
parent e98f90d3
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.
......
......@@ -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")
......
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