mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-23 20:29:30 +00:00
Apply the patch from PR8958, which allows llc to get slightly
further on the associated testcase before aborting. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@123346 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
9df536ca78
commit
b86654385a
@ -1378,7 +1378,8 @@ SDValue SelectionDAGLegalize::LegalizeOp(SDValue Op) {
|
|||||||
Result.getValueType(),
|
Result.getValueType(),
|
||||||
Result, DAG.getValueType(SrcVT));
|
Result, DAG.getValueType(SrcVT));
|
||||||
else
|
else
|
||||||
ValRes = DAG.getZeroExtendInReg(Result, dl, SrcVT);
|
ValRes = DAG.getZeroExtendInReg(Result, dl,
|
||||||
|
SrcVT.getVectorElementType());
|
||||||
Tmp1 = LegalizeOp(ValRes); // Relegalize new nodes.
|
Tmp1 = LegalizeOp(ValRes); // Relegalize new nodes.
|
||||||
Tmp2 = LegalizeOp(Result.getValue(1)); // Relegalize new nodes.
|
Tmp2 = LegalizeOp(Result.getValue(1)); // Relegalize new nodes.
|
||||||
break;
|
break;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user