projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
891e9e7
)
Fix an incorrect chain operand when expanding INSERT_VECTOR operations through the...
author
Owen Anderson
<resistor@mac.com>
Tue, 18 Nov 2014 20:50:19 +0000
(20:50 +0000)
committer
Owen Anderson
<resistor@mac.com>
Tue, 18 Nov 2014 20:50:19 +0000
(20:50 +0000)
Patch by Daniil Troshkov!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@222254
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/CodeGen/SelectionDAG/LegalizeDAG.cpp
patch
|
blob
|
history
diff --git
a/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp
b/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp
index d050e07a1ec31fc9dd4a145cfe8753a92726bc9a..a772f9c69a5dc77a2fd06f3a1613a4336f8b2223 100644
(file)
--- a/
lib/CodeGen/SelectionDAG/LegalizeDAG.cpp
+++ b/
lib/CodeGen/SelectionDAG/LegalizeDAG.cpp
@@
-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.