diff options
author | Chris Lattner <sabre@nondot.org> | 2008-01-06 06:44:58 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-01-06 06:44:58 +0000 |
commit | ef8d608dac0b79f3a14a2ee3c1b9aadf0304bf15 (patch) | |
tree | 26d074393ffc74b2550a4064726346825bb9878d /lib/Target/Mips/MipsInstrInfo.td | |
parent | f823faf62406bc0002ea09eb482fd36e05c08180 (diff) | |
download | external_llvm-ef8d608dac0b79f3a14a2ee3c1b9aadf0304bf15.zip external_llvm-ef8d608dac0b79f3a14a2ee3c1b9aadf0304bf15.tar.gz external_llvm-ef8d608dac0b79f3a14a2ee3c1b9aadf0304bf15.tar.bz2 |
Change the 'isStore' inferrer to look for 'SDNPMayStore'
instead of "ISD::STORE". This allows us to mark target-specific dag
nodes as storing (such as ppc byteswap stores). This allows us to remove
more explicit isStore flags from the .td files.
Finally, add a warning for when a .td file contains an explicit
isStore and tblgen is able to infer it.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@45654 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Mips/MipsInstrInfo.td')
-rw-r--r-- | lib/Target/Mips/MipsInstrInfo.td | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/Target/Mips/MipsInstrInfo.td b/lib/Target/Mips/MipsInstrInfo.td index 4cde36d..bc5e7f5 100644 --- a/lib/Target/Mips/MipsInstrInfo.td +++ b/lib/Target/Mips/MipsInstrInfo.td @@ -213,7 +213,6 @@ class LoadM<bits<6> op, string instr_asm, PatFrag OpNode>: !strconcat(instr_asm, " $dst, $addr"), [(set CPURegs:$dst, (OpNode addr:$addr))], IILoad>; -let isStore = 1 in class StoreM<bits<6> op, string instr_asm, PatFrag OpNode>: FI< op, (outs), |