summaryrefslogtreecommitdiff
path: root/lib/Target/Mips/MipsSEISelDAGToDAG.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/MipsSEISelDAGToDAG.h
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/MipsSEISelDAGToDAG.h')
-rw-r--r--lib/Target/Mips/MipsSEISelDAGToDAG.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/Target/Mips/MipsSEISelDAGToDAG.h b/lib/Target/Mips/MipsSEISelDAGToDAG.h
index 11bf0660f6..dbc6fcfc1f 100644
--- a/lib/Target/Mips/MipsSEISelDAGToDAG.h
+++ b/lib/Target/Mips/MipsSEISelDAGToDAG.h
@@ -24,9 +24,9 @@ public:
explicit MipsSEDAGToDAGISel(MipsTargetMachine &TM) : MipsDAGToDAGISel(TM) {}
private:
- bool ReplaceUsesWithZeroReg(MachineRegisterInfo *MRI, const MachineInstr&);
+ bool replaceUsesWithZeroReg(MachineRegisterInfo *MRI, const MachineInstr&);
- std::pair<SDNode*, SDNode*> SelectMULT(SDNode *N, unsigned Opc, DebugLoc dl,
+ std::pair<SDNode*, SDNode*> selectMULT(SDNode *N, unsigned Opc, DebugLoc dl,
EVT Ty, bool HasLo, bool HasHi);
virtual bool selectAddrRegImm(SDValue Addr, SDValue &Base,
@@ -38,13 +38,13 @@ private:
virtual bool selectIntAddr(SDValue Addr, SDValue &Base,
SDValue &Offset) const;
- virtual std::pair<bool, SDNode*> SelectNode(SDNode *Node);
+ virtual std::pair<bool, SDNode*> selectNode(SDNode *Node);
- virtual void ProcessFunctionAfterISel(MachineFunction &MF);
+ virtual void processFunctionAfterISel(MachineFunction &MF);
// Insert instructions to initialize the global base register in the
// first MBB of the function.
- void InitGlobalBaseReg(MachineFunction &MF);
+ void initGlobalBaseReg(MachineFunction &MF);
};
FunctionPass *createMipsSEISelDag(MipsTargetMachine &TM);