From 5d637d7e93c1f6058c16b41b8ac7dd36c61b4a5c Mon Sep 17 00:00:00 2001 From: Chad Rosier Date: Wed, 5 Sep 2012 01:15:43 +0000 Subject: Fix function name per coding standard. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163187 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/ARM/AsmParser/ARMAsmParser.cpp | 4 ++-- lib/Target/MBlaze/AsmParser/MBlazeAsmParser.cpp | 4 ++-- lib/Target/Mips/AsmParser/MipsAsmParser.cpp | 8 ++++---- lib/Target/X86/AsmParser/X86AsmParser.cpp | 4 ++-- 4 files changed, 10 insertions(+), 10 deletions(-) (limited to 'lib/Target') diff --git a/lib/Target/ARM/AsmParser/ARMAsmParser.cpp b/lib/Target/ARM/AsmParser/ARMAsmParser.cpp index 51ba3c3..e1e2f6e 100644 --- a/lib/Target/ARM/AsmParser/ARMAsmParser.cpp +++ b/lib/Target/ARM/AsmParser/ARMAsmParser.cpp @@ -263,10 +263,10 @@ public: SmallVectorImpl &Operands, MCStreamer &Out); - unsigned GetMCInstOperandNum(unsigned Kind, MCInst &Inst, + unsigned getMCInstOperandNum(unsigned Kind, MCInst &Inst, const SmallVectorImpl &Operands, unsigned OperandNum, unsigned &NumMCOperands) { - return GetMCInstOperandNumImpl(Kind, Inst, Operands, OperandNum, NumMCOperands); + return getMCInstOperandNumImpl(Kind, Inst, Operands, OperandNum, NumMCOperands); } }; } // end anonymous namespace diff --git a/lib/Target/MBlaze/AsmParser/MBlazeAsmParser.cpp b/lib/Target/MBlaze/AsmParser/MBlazeAsmParser.cpp index 6a63f17..4059403 100644 --- a/lib/Target/MBlaze/AsmParser/MBlazeAsmParser.cpp +++ b/lib/Target/MBlaze/AsmParser/MBlazeAsmParser.cpp @@ -56,10 +56,10 @@ class MBlazeAsmParser : public MCTargetAsmParser { /// } - unsigned GetMCInstOperandNum(unsigned Kind, MCInst &Inst, + unsigned getMCInstOperandNum(unsigned Kind, MCInst &Inst, const SmallVectorImpl &Operands, unsigned OperandNum, unsigned &NumMCOperands) { - return GetMCInstOperandNumImpl(Kind, Inst, Operands, OperandNum, + return getMCInstOperandNumImpl(Kind, Inst, Operands, OperandNum, NumMCOperands); } 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&); - unsigned GetMCInstOperandNum(unsigned Kind, MCInst &Inst, + unsigned getMCInstOperandNum(unsigned Kind, MCInst &Inst, const SmallVectorImpl &Operands, unsigned OperandNum, unsigned &NumMCOperands); @@ -102,12 +102,12 @@ public: } unsigned MipsAsmParser:: -GetMCInstOperandNum(unsigned Kind, MCInst &Inst, +getMCInstOperandNum(unsigned Kind, MCInst &Inst, const SmallVectorImpl &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; diff --git a/lib/Target/X86/AsmParser/X86AsmParser.cpp b/lib/Target/X86/AsmParser/X86AsmParser.cpp index baf4589..8a7d6f0 100644 --- a/lib/Target/X86/AsmParser/X86AsmParser.cpp +++ b/lib/Target/X86/AsmParser/X86AsmParser.cpp @@ -73,10 +73,10 @@ private: unsigned &OrigErrorInfo, bool matchingInlineAsm = false); - unsigned GetMCInstOperandNum(unsigned Kind, MCInst &Inst, + unsigned getMCInstOperandNum(unsigned Kind, MCInst &Inst, const SmallVectorImpl &Operands, unsigned OperandNum, unsigned &NumMCOperands) { - return GetMCInstOperandNumImpl(Kind, Inst, Operands, OperandNum, + return getMCInstOperandNumImpl(Kind, Inst, Operands, OperandNum, NumMCOperands); } -- cgit v1.1