mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-09-19 04:26:05 +00:00
Fix function name per coding standard.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163187 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -38,7 +38,7 @@ class MipsAsmParser : public MCTargetAsmParser {
|
||||
|
||||
OperandMatchResultTy parseMemOperand(SmallVectorImpl<MCParsedAsmOperand*>&);
|
||||
|
||||
unsigned GetMCInstOperandNum(unsigned Kind, MCInst &Inst,
|
||||
unsigned getMCInstOperandNum(unsigned Kind, MCInst &Inst,
|
||||
const SmallVectorImpl<MCParsedAsmOperand*> &Operands,
|
||||
unsigned OperandNum, unsigned &NumMCOperands);
|
||||
|
||||
@@ -102,12 +102,12 @@ public:
|
||||
}
|
||||
|
||||
unsigned MipsAsmParser::
|
||||
GetMCInstOperandNum(unsigned Kind, MCInst &Inst,
|
||||
getMCInstOperandNum(unsigned Kind, MCInst &Inst,
|
||||
const SmallVectorImpl<MCParsedAsmOperand*> &Operands,
|
||||
unsigned OperandNum, unsigned &NumMCOperands) {
|
||||
assert (0 && "GetMCInstOperandNum() not supported by the Mips target.");
|
||||
assert (0 && "getMCInstOperandNum() not supported by the Mips target.");
|
||||
// The Mips backend doesn't currently include the matcher implementation, so
|
||||
// the GetMCInstOperandNumImpl() is undefined. This is a temporary
|
||||
// the getMCInstOperandNumImpl() is undefined. This is a temporary
|
||||
// work around.
|
||||
NumMCOperands = 0;
|
||||
return 0;
|
||||
|
Reference in New Issue
Block a user