[PATCH] D55502: [NFC] [PPC] Store Instructions have a destination not a source
Martell Malone via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Dec 10 19:18:11 PST 2018
This revision was automatically updated to reflect the committed changes.
Closed by commit rL348826: [PPC][NFC] store operands are dst not src (authored by martell, committed by ).
Changed prior to commit:
https://reviews.llvm.org/D55502?vs=177452&id=177647#toc
Repository:
rL LLVM
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D55502/new/
https://reviews.llvm.org/D55502
Files:
llvm/trunk/lib/Target/PowerPC/PPCInstrInfo.td
Index: llvm/trunk/lib/Target/PowerPC/PPCInstrInfo.td
===================================================================
--- llvm/trunk/lib/Target/PowerPC/PPCInstrInfo.td
+++ llvm/trunk/lib/Target/PowerPC/PPCInstrInfo.td
@@ -1994,15 +1994,15 @@
// Unindexed (r+i) Stores.
let PPC970_Unit = 2, mayStore = 1, mayLoad = 0 in {
-def STB : DForm_1<38, (outs), (ins gprc:$rS, memri:$src),
- "stb $rS, $src", IIC_LdStStore,
- [(truncstorei8 i32:$rS, iaddr:$src)]>;
-def STH : DForm_1<44, (outs), (ins gprc:$rS, memri:$src),
- "sth $rS, $src", IIC_LdStStore,
- [(truncstorei16 i32:$rS, iaddr:$src)]>;
-def STW : DForm_1<36, (outs), (ins gprc:$rS, memri:$src),
- "stw $rS, $src", IIC_LdStStore,
- [(store i32:$rS, iaddr:$src)]>;
+def STB : DForm_1<38, (outs), (ins gprc:$rS, memri:$dst),
+ "stb $rS, $dst", IIC_LdStStore,
+ [(truncstorei8 i32:$rS, iaddr:$dst)]>;
+def STH : DForm_1<44, (outs), (ins gprc:$rS, memri:$dst),
+ "sth $rS, $dst", IIC_LdStStore,
+ [(truncstorei16 i32:$rS, iaddr:$dst)]>;
+def STW : DForm_1<36, (outs), (ins gprc:$rS, memri:$dst),
+ "stw $rS, $dst", IIC_LdStStore,
+ [(store i32:$rS, iaddr:$dst)]>;
let Predicates = [HasFPU] in {
def STFS : DForm_1<52, (outs), (ins f4rc:$rS, memri:$dst),
"stfs $rS, $dst", IIC_LdStSTFD,
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D55502.177647.patch
Type: text/x-patch
Size: 1486 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20181211/957623b0/attachment.bin>
More information about the llvm-commits
mailing list