mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
ARM Remove a bit of dead code.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@152061 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
28f08c93e7
commit
af9f4bc752
@ -89,15 +89,6 @@ def VecListOneD : RegisterOperand<DPR, "printVectorListOne"> {
|
||||
let ParserMatchClass = VecListOneDAsmOperand;
|
||||
}
|
||||
// Register list of two sequential D registers.
|
||||
def VecListTwoDAsmOperand : AsmOperandClass {
|
||||
let Name = "VecListTwoD";
|
||||
let ParserMethod = "parseVectorList";
|
||||
let RenderMethod = "addVecListOperands";
|
||||
}
|
||||
def VecListTwoD : RegisterOperand<DPR, "printVectorListTwo"> {
|
||||
let ParserMatchClass = VecListTwoDAsmOperand;
|
||||
}
|
||||
// FIXME: Replace all VecListTwoD with VecListDPair
|
||||
def VecListDPairAsmOperand : AsmOperandClass {
|
||||
let Name = "VecListDPair";
|
||||
let ParserMethod = "parseVectorList";
|
||||
|
@ -1085,11 +1085,6 @@ public:
|
||||
return VectorList.Count == 1;
|
||||
}
|
||||
|
||||
bool isVecListTwoD() const {
|
||||
if (!isSingleSpacedVectorList()) return false;
|
||||
return VectorList.Count == 2;
|
||||
}
|
||||
|
||||
bool isVecListDPair() const {
|
||||
if (!isSingleSpacedVectorList()) return false;
|
||||
return (ARMMCRegisterClasses[ARM::DPairRegClassID]
|
||||
|
Loading…
Reference in New Issue
Block a user