aboutsummaryrefslogtreecommitdiff
path: root/lib/Target/ARM/AsmParser/ARMAsmParser.cpp
diff options
context:
space:
mode:
authorChad Rosier <mcrosier@apple.com>2012-09-05 01:15:43 +0000
committerChad Rosier <mcrosier@apple.com>2012-09-05 01:15:43 +0000
commit5d637d7e93c1f6058c16b41b8ac7dd36c61b4a5c (patch)
tree1d6ac481ed6fd5515debc5f16b85d7edf5f5f591 /lib/Target/ARM/AsmParser/ARMAsmParser.cpp
parent90e11f8c95146c2d3718e9b3de71ee6628347b05 (diff)
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/ARM/AsmParser/ARMAsmParser.cpp')
-rw-r--r--lib/Target/ARM/AsmParser/ARMAsmParser.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/ARM/AsmParser/ARMAsmParser.cpp b/lib/Target/ARM/AsmParser/ARMAsmParser.cpp
index 51ba3c3b37..e1e2f6ea73 100644
--- a/lib/Target/ARM/AsmParser/ARMAsmParser.cpp
+++ b/lib/Target/ARM/AsmParser/ARMAsmParser.cpp
@@ -263,10 +263,10 @@ public:
SmallVectorImpl<MCParsedAsmOperand*> &Operands,
MCStreamer &Out);
- 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, NumMCOperands);
+ return getMCInstOperandNumImpl(Kind, Inst, Operands, OperandNum, NumMCOperands);
}
};
} // end anonymous namespace