summaryrefslogtreecommitdiff
path: root/lib/Target/Mips/MipsRegisterInfo.td
diff options
context:
space:
mode:
authorAkira Hatanaka <ahatanaka@mips.com>2013-07-26 18:50:42 +0000
committerAkira Hatanaka <ahatanaka@mips.com>2013-07-26 18:50:42 +0000
commitd6a7ea27361a64228e5afaf99d2ef3609a63cd3e (patch)
tree463bed4ba7a0e3b96e6ff710e897247837a10077 /lib/Target/Mips/MipsRegisterInfo.td
parent9b06dd6ca25fd1f8d2cf9227fdffc304c9f51564 (diff)
downloadllvm-d6a7ea27361a64228e5afaf99d2ef3609a63cd3e.tar.gz
llvm-d6a7ea27361a64228e5afaf99d2ef3609a63cd3e.tar.bz2
llvm-d6a7ea27361a64228e5afaf99d2ef3609a63cd3e.tar.xz
[mips] Delete register print method MipsInstPrinter::printCPURegs that is not
needed. The generic method printOperand will do. No functionality change. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187231 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Mips/MipsRegisterInfo.td')
-rw-r--r--lib/Target/Mips/MipsRegisterInfo.td10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/Target/Mips/MipsRegisterInfo.td b/lib/Target/Mips/MipsRegisterInfo.td
index 63e4001807..990aea45e9 100644
--- a/lib/Target/Mips/MipsRegisterInfo.td
+++ b/lib/Target/Mips/MipsRegisterInfo.td
@@ -356,15 +356,15 @@ def FGR32AsmOperand : MipsAsmRegOperand {
let ParserMethod = "parseFGR32Regs";
}
-def CPURegsOpnd : RegisterOperand<CPURegs, "printCPURegs"> {
+def CPURegsOpnd : RegisterOperand<CPURegs> {
let ParserMatchClass = CPURegsAsmOperand;
}
-def CPU64RegsOpnd : RegisterOperand<CPU64Regs, "printCPURegs"> {
+def CPU64RegsOpnd : RegisterOperand<CPU64Regs> {
let ParserMatchClass = CPU64RegsAsmOperand;
}
-def CCROpnd : RegisterOperand<CCR, "printCPURegs"> {
+def CCROpnd : RegisterOperand<CCR> {
let ParserMatchClass = CCRAsmOperand;
}
@@ -378,11 +378,11 @@ def HW64RegsAsmOperand : MipsAsmRegOperand {
let ParserMethod = "parseHW64Regs";
}
-def HWRegsOpnd : RegisterOperand<HWRegs, "printCPURegs"> {
+def HWRegsOpnd : RegisterOperand<HWRegs> {
let ParserMatchClass = HWRegsAsmOperand;
}
-def HW64RegsOpnd : RegisterOperand<HWRegs64, "printCPURegs"> {
+def HW64RegsOpnd : RegisterOperand<HWRegs64> {
let ParserMatchClass = HW64RegsAsmOperand;
}