mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-06 05:10:29 +08:00
arm.md (*ldmsi,*stmsi): Use (mem (match_operand ...)) to avoid using indirect_operand (reload problems).
* arm/arm.md (*ldmsi,*stmsi): Use (mem (match_operand ...)) to avoid using indirect_operand (reload problems). From-SVN: r11704
This commit is contained in:
parent
7f6c7be1a0
commit
310324b8a2
@ -2907,7 +2907,7 @@
|
||||
(define_insn "*ldmsi"
|
||||
[(match_parallel 0 "load_multiple_operation"
|
||||
[(set (match_operand:SI 1 "s_register_operand" "=r")
|
||||
(match_operand:SI 2 "indirect_operand" "Q"))])]
|
||||
(mem:SI (match_operand:SI 2 "s_register_operand" "r")))])]
|
||||
""
|
||||
"*
|
||||
{
|
||||
@ -2980,7 +2980,7 @@
|
||||
|
||||
(define_insn "*stmsi"
|
||||
[(match_parallel 0 "store_multiple_operation"
|
||||
[(set (match_operand:SI 2 "indirect_operand" "=Q")
|
||||
[(set (mem:SI (match_operand:SI 2 "s_register_operand" "r"))
|
||||
(match_operand:SI 1 "s_register_operand" "r"))])]
|
||||
""
|
||||
"*
|
||||
|
Loading…
x
Reference in New Issue
Block a user