Fix function name per coding standard.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@163187 91177308-0d34-0410-b5e6-96231b3b80d8
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 @@
                         unsigned &OrigErrorInfo,
                         bool matchingInlineAsm = false);
 
-  unsigned GetMCInstOperandNum(unsigned Kind, MCInst &Inst,
+  unsigned getMCInstOperandNum(unsigned Kind, MCInst &Inst,
                     const SmallVectorImpl<MCParsedAsmOperand*> &Operands,
                                unsigned OperandNum, unsigned &NumMCOperands) {
-    return GetMCInstOperandNumImpl(Kind, Inst, Operands, OperandNum,
+    return getMCInstOperandNumImpl(Kind, Inst, Operands, OperandNum,
                                    NumMCOperands);
   }