forked from OSchip/llvm-project
[AArch64] The paired post-increment store instruction has an output register.
The pre- and post-increment version update the base register, but the post- version was defined incorrectly. There is no test case as we don't currently generate these instructions, but I plan on changing that in the near future. llvm-svn: 248528
This commit is contained in:
parent
9303c24650
commit
7cd472b719
|
@ -3253,8 +3253,8 @@ class LoadPairPostIdx<bits<2> opc, bit V, RegisterClass regtype,
|
|||
let mayStore = 1, mayLoad = 0 in
|
||||
class StorePairPostIdx<bits<2> opc, bit V, RegisterClass regtype,
|
||||
Operand idxtype, string asm>
|
||||
: BaseLoadStorePairPostIdx<opc, V, 0, (outs),
|
||||
(ins GPR64sp:$wback, regtype:$Rt, regtype:$Rt2,
|
||||
: BaseLoadStorePairPostIdx<opc, V, 0, (outs GPR64sp:$wback),
|
||||
(ins regtype:$Rt, regtype:$Rt2,
|
||||
GPR64sp:$Rn, idxtype:$offset),
|
||||
asm>,
|
||||
Sched<[WriteAdr, WriteSTP]>;
|
||||
|
|
Loading…
Reference in New Issue