diff options
author | Akira Hatanaka <ahatanak@gmail.com> | 2011-09-09 20:45:50 +0000 |
---|---|---|
committer | Akira Hatanaka <ahatanak@gmail.com> | 2011-09-09 20:45:50 +0000 |
commit | 8ddf6531b88937dec35bf2bb3a55245b1af9cbf5 (patch) | |
tree | b02f180f3b69779d7e4915457516d4c04c34c8b7 /lib/Target/Mips/MipsInstrInfo.td | |
parent | 8ffad56f8eb41c73ecf40d1aa473819eb6915c12 (diff) | |
download | external_llvm-8ddf6531b88937dec35bf2bb3a55245b1af9cbf5.zip external_llvm-8ddf6531b88937dec35bf2bb3a55245b1af9cbf5.tar.gz external_llvm-8ddf6531b88937dec35bf2bb3a55245b1af9cbf5.tar.bz2 |
Drop support for Mips1 and Mips2.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@139405 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Mips/MipsInstrInfo.td')
-rw-r--r-- | lib/Target/Mips/MipsInstrInfo.td | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/Mips/MipsInstrInfo.td b/lib/Target/Mips/MipsInstrInfo.td index f9cc58b..ccf2307 100644 --- a/lib/Target/Mips/MipsInstrInfo.td +++ b/lib/Target/Mips/MipsInstrInfo.td @@ -273,7 +273,7 @@ class LoadUpper<bits<6> op, string instr_asm>: [], IIAlu>; // Memory Load/Store -let canFoldAsLoad = 1, hasDelaySlot = 1 in +let canFoldAsLoad = 1 in class LoadM<bits<6> op, string instr_asm, PatFrag OpNode>: FI<op, (outs CPURegs:$dst), (ins mem:$addr), !strconcat(instr_asm, "\t$dst, $addr"), @@ -571,7 +571,7 @@ def SYNC : MipsInst<(outs), (ins i32imm:$stype), "sync $stype", } /// Load-linked, Store-conditional -let mayLoad = 1, hasDelaySlot = 1 in +let mayLoad = 1 in def LL : FI<0x30, (outs CPURegs:$dst), (ins mem:$addr), "ll\t$dst, $addr", [], IILoad>; let mayStore = 1, Constraints = "$src = $dst" in |