diff options
| author | Chad Rosier <mcrosier@apple.com> | 2012-09-05 01:15:43 +0000 |
|---|---|---|
| committer | Chad Rosier <mcrosier@apple.com> | 2012-09-05 01:15:43 +0000 |
| commit | 5d637d7e93c1f6058c16b41b8ac7dd36c61b4a5c (patch) | |
| tree | 1d6ac481ed6fd5515debc5f16b85d7edf5f5f591 /lib/Target/Mips/AsmParser/MipsAsmParser.cpp | |
| parent | 90e11f8c95146c2d3718e9b3de71ee6628347b05 (diff) | |
| download | external_llvm-5d637d7e93c1f6058c16b41b8ac7dd36c61b4a5c.zip external_llvm-5d637d7e93c1f6058c16b41b8ac7dd36c61b4a5c.tar.gz external_llvm-5d637d7e93c1f6058c16b41b8ac7dd36c61b4a5c.tar.bz2 | |
Fix function name per coding standard.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163187 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Mips/AsmParser/MipsAsmParser.cpp')
| -rw-r--r-- | lib/Target/Mips/AsmParser/MipsAsmParser.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/Target/Mips/AsmParser/MipsAsmParser.cpp b/lib/Target/Mips/AsmParser/MipsAsmParser.cpp index c33c4d2..29a7ac8 100644 --- a/lib/Target/Mips/AsmParser/MipsAsmParser.cpp +++ b/lib/Target/Mips/AsmParser/MipsAsmParser.cpp @@ -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; |
