diff options
author | Chad Rosier <mcrosier@apple.com> | 2012-09-24 22:57:55 +0000 |
---|---|---|
committer | Chad Rosier <mcrosier@apple.com> | 2012-09-24 22:57:55 +0000 |
commit | c4734c8950c3b4ba92b7997767068e75acccb4f1 (patch) | |
tree | 4f86ac5e0f25bc4689e66e59fe7352025689ca22 /llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp | |
parent | 61740f6649173ec2d1e74dc3e11c3245fae8e0fb (diff) | |
download | bcm5719-llvm-c4734c8950c3b4ba92b7997767068e75acccb4f1.tar.gz bcm5719-llvm-c4734c8950c3b4ba92b7997767068e75acccb4f1.zip |
Rather then have a wrapper function, have tblgen instantiate the implementation.
Also remove an unused argument.
llvm-svn: 164567
Diffstat (limited to 'llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp')
-rw-r--r-- | llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp b/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp index 437147c91de..a7997d5e276 100644 --- a/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp +++ b/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp @@ -262,12 +262,6 @@ public: bool MatchAndEmitInstruction(SMLoc IDLoc, SmallVectorImpl<MCParsedAsmOperand*> &Operands, MCStreamer &Out); - - unsigned getMCInstOperandNum(unsigned Kind, MCInst &Inst, - const SmallVectorImpl<MCParsedAsmOperand*> &Operands, - unsigned OperandNum, unsigned &NumMCOperands) { - return getMCInstOperandNumImpl(Kind, Inst, Operands, OperandNum, NumMCOperands); - } }; } // end anonymous namespace |