diff options
author | Bob Wilson <bob.wilson@apple.com> | 2010-12-10 22:13:24 +0000 |
---|---|---|
committer | Bob Wilson <bob.wilson@apple.com> | 2010-12-10 22:13:24 +0000 |
commit | 20d5515aa503ef0cfe1fa8545c18c3b4d3f4473b (patch) | |
tree | 170b265c0d99a8a5799968fa279f34ca506854e3 | |
parent | 0f4b60d43a289671082deee3bd56a3a055afb16a (diff) | |
download | external_llvm-20d5515aa503ef0cfe1fa8545c18c3b4d3f4473b.zip external_llvm-20d5515aa503ef0cfe1fa8545c18c3b4d3f4473b.tar.gz external_llvm-20d5515aa503ef0cfe1fa8545c18c3b4d3f4473b.tar.bz2 |
Remove unused arguments.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@121582 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/ARM/ARMInstrNEON.td | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/Target/ARM/ARMInstrNEON.td b/lib/Target/ARM/ARMInstrNEON.td index bc45d78..2286a12 100644 --- a/lib/Target/ARM/ARMInstrNEON.td +++ b/lib/Target/ARM/ARMInstrNEON.td @@ -815,7 +815,7 @@ def VLD1DUPq32Pseudo : VLD1QDUPPseudo<v4i32, load>; let mayLoad = 1, neverHasSideEffects = 1, hasExtraDefRegAllocReq = 1 in { -class VLD1QDUP<bits<4> op7_4, string Dt, ValueType Ty, PatFrag LoadOp> +class VLD1QDUP<bits<4> op7_4, string Dt> : NLdSt<1, 0b10, 0b1100, op7_4, (outs DPR:$Vd, DPR:$dst2), (ins addrmode6dup:$Rn), IIC_VLD1dup, "vld1", Dt, "\\{$Vd[], $dst2[]\\}, $Rn", "", []> { @@ -823,9 +823,9 @@ class VLD1QDUP<bits<4> op7_4, string Dt, ValueType Ty, PatFrag LoadOp> let Inst{4} = Rn{4}; } -def VLD1DUPq8 : VLD1QDUP<{0,0,1,0}, "8", v16i8, extloadi8>; -def VLD1DUPq16 : VLD1QDUP<{0,1,1,?}, "16", v8i16, extloadi16>; -def VLD1DUPq32 : VLD1QDUP<{1,0,1,?}, "32", v4i32, load>; +def VLD1DUPq8 : VLD1QDUP<{0,0,1,0}, "8">; +def VLD1DUPq16 : VLD1QDUP<{0,1,1,?}, "16">; +def VLD1DUPq32 : VLD1QDUP<{1,0,1,?}, "32">; // ...with address register writeback: class VLD1DUPWB<bits<4> op7_4, string Dt> |