summaryrefslogtreecommitdiff
path: root/lib/Target/Mips/MipsISelDAGToDAG.cpp
diff options
context:
space:
mode:
authorAkira Hatanaka <ahatanaka@mips.com>2013-03-14 18:33:23 +0000
committerAkira Hatanaka <ahatanaka@mips.com>2013-03-14 18:33:23 +0000
commitf283512d72757aac5bedcb270f9199194e6a12c0 (patch)
treedd571ea3e8577d721fde245baa0bea956c12c648 /lib/Target/Mips/MipsISelDAGToDAG.cpp
parent1d905668ddaab127eb6f9668b6314afbef7bee20 (diff)
downloadllvm-f283512d72757aac5bedcb270f9199194e6a12c0.tar.gz
llvm-f283512d72757aac5bedcb270f9199194e6a12c0.tar.bz2
llvm-f283512d72757aac5bedcb270f9199194e6a12c0.tar.xz
[mips] Rename functions and variables to start with proper case.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@177092 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Mips/MipsISelDAGToDAG.cpp')
-rw-r--r--lib/Target/Mips/MipsISelDAGToDAG.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/Target/Mips/MipsISelDAGToDAG.cpp b/lib/Target/Mips/MipsISelDAGToDAG.cpp
index 9e55c9ee09..a0346212e7 100644
--- a/lib/Target/Mips/MipsISelDAGToDAG.cpp
+++ b/lib/Target/Mips/MipsISelDAGToDAG.cpp
@@ -49,7 +49,7 @@ using namespace llvm;
bool MipsDAGToDAGISel::runOnMachineFunction(MachineFunction &MF) {
bool Ret = SelectionDAGISel::runOnMachineFunction(MF);
- ProcessFunctionAfterISel(MF);
+ processFunctionAfterISel(MF);
return Ret;
}
@@ -81,7 +81,7 @@ bool MipsDAGToDAGISel::selectIntAddr(SDValue Addr, SDValue &Base,
return false;
}
-bool MipsDAGToDAGISel::SelectAddr16(SDNode *Parent, SDValue N, SDValue &Base,
+bool MipsDAGToDAGISel::selectAddr16(SDNode *Parent, SDValue N, SDValue &Base,
SDValue &Offset, SDValue &Alias) {
llvm_unreachable("Unimplemented function.");
return false;
@@ -91,7 +91,7 @@ bool MipsDAGToDAGISel::SelectAddr16(SDNode *Parent, SDValue N, SDValue &Base,
/// expanded, promoted and normal instructions
SDNode* MipsDAGToDAGISel::Select(SDNode *Node) {
unsigned Opcode = Node->getOpcode();
- DebugLoc dl = Node->getDebugLoc();
+ DebugLoc DL = Node->getDebugLoc();
EVT NodeTy = Node->getValueType(0);
// Dump information about the Node being selected
@@ -104,7 +104,7 @@ SDNode* MipsDAGToDAGISel::Select(SDNode *Node) {
}
// See if subclasses can handle this node.
- std::pair<bool, SDNode*> Ret = SelectNode(Node);
+ std::pair<bool, SDNode*> Ret = selectNode(Node);
if (Ret.first)
return Ret.second;