mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
Fix an incorrect chain operand when expanding INSERT_VECTOR operations through the stack.
Patch by Daniil Troshkov! llvm-svn: 222254
This commit is contained in:
parent
962ccd7f85
commit
4490a7cce1
@ -1486,7 +1486,7 @@ SDValue SelectionDAGLegalize::ExpandInsertToVectorThroughStack(SDValue Op) {
|
||||
StackPtr);
|
||||
|
||||
// Store the subvector.
|
||||
Ch = DAG.getStore(DAG.getEntryNode(), dl, Part, SubStackPtr,
|
||||
Ch = DAG.getStore(Ch, dl, Part, SubStackPtr,
|
||||
MachinePointerInfo(), false, false, 0);
|
||||
|
||||
// Finally, load the updated vector.
|
||||
|
Loading…
Reference in New Issue
Block a user