mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-02 08:46:37 +00:00
Fix a compile crash building MultiSource/Applications/d with the new front-end.
The PPC backend was generating random shift counts in this case, due to an uninitialized variable. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25114 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
3a55866622
commit
c9a5ef524a
@ -952,13 +952,13 @@ SDOperand PPCDAGToDAGISel::Select(SDOperand Op) {
|
||||
if (isIntImmediate(N->getOperand(1), Imm) &&
|
||||
N->getOperand(0).getOpcode() == ISD::OR &&
|
||||
isIntImmediate(N->getOperand(0).getOperand(1), Imm2)) {
|
||||
unsigned SH, MB, ME;
|
||||
unsigned MB, ME;
|
||||
Imm = ~(Imm^Imm2);
|
||||
if (isRunOfOnes(Imm, MB, ME)) {
|
||||
SDOperand Tmp1 = Select(N->getOperand(0).getOperand(0));
|
||||
SDOperand Tmp2 = Select(N->getOperand(0).getOperand(1));
|
||||
return CurDAG->getTargetNode(PPC::RLWIMI, MVT::i32, Tmp1, Tmp2,
|
||||
getI32Imm(SH), getI32Imm(MB), getI32Imm(ME));
|
||||
getI32Imm(0), getI32Imm(MB), getI32Imm(ME));
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user