summaryrefslogtreecommitdiffstats
path: root/llvm/lib
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
commita05ea0f3e37abe86fe62080063f562a3d9d9b0a2 (patch)
tree8068a1e4b924e654f6022fe4bd3f9be000253bfd /llvm/lib
parentba284b9b59297c041ae696e223f3bb955cb7d9cf (diff)
downloadbcm5719-llvm-a05ea0f3e37abe86fe62080063f562a3d9d9b0a2.tar.gz
bcm5719-llvm-a05ea0f3e37abe86fe62080063f562a3d9d9b0a2.zip
Fix function name per coding standard.
llvm-svn: 163187
Diffstat (limited to 'llvm/lib')
-rw-r--r--llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp4
-rw-r--r--llvm/lib/Target/MBlaze/AsmParser/MBlazeAsmParser.cpp4
-rw-r--r--llvm/lib/Target/Mips/AsmParser/MipsAsmParser.cpp8
-rw-r--r--llvm/lib/Target/X86/AsmParser/X86AsmParser.cpp4
4 files changed, 10 insertions, 10 deletions
diff --git a/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp b/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp
index 51ba3c3b37c..e1e2f6ea736 100644
--- a/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp
+++ b/llvm/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
diff --git a/llvm/lib/Target/MBlaze/AsmParser/MBlazeAsmParser.cpp b/llvm/lib/Target/MBlaze/AsmParser/MBlazeAsmParser.cpp
index 6a63f17c6ae..40594030e57 100644
--- a/llvm/lib/Target/MBlaze/AsmParser/MBlazeAsmParser.cpp
+++ b/llvm/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<MCParsedAsmOperand*> &Operands,
unsigned OperandNum, unsigned &NumMCOperands) {
- return GetMCInstOperandNumImpl(Kind, Inst, Operands, OperandNum,
+ return getMCInstOperandNumImpl(Kind, Inst, Operands, OperandNum,
NumMCOperands);
}
diff --git a/llvm/lib/Target/Mips/AsmParser/MipsAsmParser.cpp b/llvm/lib/Target/Mips/AsmParser/MipsAsmParser.cpp
index c33c4d2ccd7..29a7ac825f1 100644
--- a/llvm/lib/Target/Mips/AsmParser/MipsAsmParser.cpp
+++ b/llvm/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;
diff --git a/llvm/lib/Target/X86/AsmParser/X86AsmParser.cpp b/llvm/lib/Target/X86/AsmParser/X86AsmParser.cpp
index baf45893f1c..8a7d6f0c753 100644
--- a/llvm/lib/Target/X86/AsmParser/X86AsmParser.cpp
+++ b/llvm/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<MCParsedAsmOperand*> &Operands,
unsigned OperandNum, unsigned &NumMCOperands) {
- return GetMCInstOperandNumImpl(Kind, Inst, Operands, OperandNum,
+ return getMCInstOperandNumImpl(Kind, Inst, Operands, OperandNum,
NumMCOperands);
}
OpenPOWER on IntegriCloud