diff options
author | Eric Christopher <echristo@gmail.com> | 2014-05-14 00:31:15 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2014-05-14 00:31:15 +0000 |
commit | 02e1804d8da36244cdd60cf22183fc69bdab22dc (patch) | |
tree | 893a68e35ec0f33935770940caf8f4365423a328 /llvm/lib/Target/PowerPC | |
parent | aabde05da1d5ca86f23a7fc8f7e9da4dea7ae205 (diff) | |
download | bcm5719-llvm-02e1804d8da36244cdd60cf22183fc69bdab22dc.tar.gz bcm5719-llvm-02e1804d8da36244cdd60cf22183fc69bdab22dc.zip |
Fix typo in function name.
llvm-svn: 208743
Diffstat (limited to 'llvm/lib/Target/PowerPC')
-rw-r--r-- | llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp b/llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp index 7101315b651..37b3137bd34 100644 --- a/llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp +++ b/llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp @@ -189,7 +189,7 @@ private: SDNode *SelectSETCC(SDNode *N); void PeepholePPC64(); - void PeepholdCROps(); + void PeepholeCROps(); bool AllUsersSelectZero(SDNode *N); void SwapAllSelectUsers(SDNode *N); @@ -469,8 +469,8 @@ SDNode *PPCDAGToDAGISel::SelectBitfieldInsert(SDNode *N) { unsigned SHOpc = Op1.getOperand(0).getOpcode(); if ((SHOpc == ISD::SHL || SHOpc == ISD::SRL) && CanFoldMask && isInt32Immediate(Op1.getOperand(0).getOperand(1), Value)) { - // Note that Value must be in range here (less than 32) because - // otherwise there would not be any bits set in InsertMask. + // Note that Value must be in range here (less than 32) because + // otherwise there would not be any bits set in InsertMask. Op1 = Op1.getOperand(0).getOperand(0); SH = (SHOpc == ISD::SHL) ? Value : 32 - Value; } @@ -1574,7 +1574,7 @@ void PPCDAGToDAGISel::PostprocessISelDAG() { return; PeepholePPC64(); - PeepholdCROps(); + PeepholeCROps(); } // Check if all users of this node will become isel where the second operand @@ -1645,7 +1645,7 @@ void PPCDAGToDAGISel::SwapAllSelectUsers(SDNode *N) { } } -void PPCDAGToDAGISel::PeepholdCROps() { +void PPCDAGToDAGISel::PeepholeCROps() { bool IsModified; do { IsModified = false; |