mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-26 05:25:47 +00:00
Fix typo in function name.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@208743 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -189,7 +189,7 @@ private:
|
|||||||
SDNode *SelectSETCC(SDNode *N);
|
SDNode *SelectSETCC(SDNode *N);
|
||||||
|
|
||||||
void PeepholePPC64();
|
void PeepholePPC64();
|
||||||
void PeepholdCROps();
|
void PeepholeCROps();
|
||||||
|
|
||||||
bool AllUsersSelectZero(SDNode *N);
|
bool AllUsersSelectZero(SDNode *N);
|
||||||
void SwapAllSelectUsers(SDNode *N);
|
void SwapAllSelectUsers(SDNode *N);
|
||||||
@@ -469,8 +469,8 @@ SDNode *PPCDAGToDAGISel::SelectBitfieldInsert(SDNode *N) {
|
|||||||
unsigned SHOpc = Op1.getOperand(0).getOpcode();
|
unsigned SHOpc = Op1.getOperand(0).getOpcode();
|
||||||
if ((SHOpc == ISD::SHL || SHOpc == ISD::SRL) && CanFoldMask &&
|
if ((SHOpc == ISD::SHL || SHOpc == ISD::SRL) && CanFoldMask &&
|
||||||
isInt32Immediate(Op1.getOperand(0).getOperand(1), Value)) {
|
isInt32Immediate(Op1.getOperand(0).getOperand(1), Value)) {
|
||||||
// Note that Value must be in range here (less than 32) because
|
// Note that Value must be in range here (less than 32) because
|
||||||
// otherwise there would not be any bits set in InsertMask.
|
// otherwise there would not be any bits set in InsertMask.
|
||||||
Op1 = Op1.getOperand(0).getOperand(0);
|
Op1 = Op1.getOperand(0).getOperand(0);
|
||||||
SH = (SHOpc == ISD::SHL) ? Value : 32 - Value;
|
SH = (SHOpc == ISD::SHL) ? Value : 32 - Value;
|
||||||
}
|
}
|
||||||
@@ -1574,7 +1574,7 @@ void PPCDAGToDAGISel::PostprocessISelDAG() {
|
|||||||
return;
|
return;
|
||||||
|
|
||||||
PeepholePPC64();
|
PeepholePPC64();
|
||||||
PeepholdCROps();
|
PeepholeCROps();
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check if all users of this node will become isel where the second operand
|
// 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;
|
bool IsModified;
|
||||||
do {
|
do {
|
||||||
IsModified = false;
|
IsModified = false;
|
||||||
|
Reference in New Issue
Block a user