summaryrefslogtreecommitdiff
path: root/lib/Target/Mips/MipsISelDAGToDAG.h
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.h
parent1d905668ddaab127eb6f9668b6314afbef7bee20 (diff)
[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.h')
-rw-r--r--lib/Target/Mips/MipsISelDAGToDAG.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Target/Mips/MipsISelDAGToDAG.h b/lib/Target/Mips/MipsISelDAGToDAG.h
index eca89bdda18..cf0f9c58aa9 100644
--- a/lib/Target/Mips/MipsISelDAGToDAG.h
+++ b/lib/Target/Mips/MipsISelDAGToDAG.h
@@ -65,19 +65,19 @@ private:
virtual bool selectIntAddr(SDValue Addr, SDValue &Base,
SDValue &Offset) const;
- virtual bool SelectAddr16(SDNode *Parent, SDValue N, SDValue &Base,
+ virtual bool selectAddr16(SDNode *Parent, SDValue N, SDValue &Base,
SDValue &Offset, SDValue &Alias);
virtual SDNode *Select(SDNode *N);
- virtual std::pair<bool, SDNode*> SelectNode(SDNode *Node) = 0;
+ virtual std::pair<bool, SDNode*> selectNode(SDNode *Node) = 0;
// getImm - Return a target constant with the specified value.
inline SDValue getImm(const SDNode *Node, uint64_t Imm) {
return CurDAG->getTargetConstant(Imm, Node->getValueType(0));
}
- virtual void ProcessFunctionAfterISel(MachineFunction &MF) = 0;
+ virtual void processFunctionAfterISel(MachineFunction &MF) = 0;
virtual bool SelectInlineAsmMemoryOperand(const SDValue &Op,
char ConstraintCode,