diff options
author | Jonas Paulsson <paulsson@linux.vnet.ibm.com> | 2018-01-20 16:05:10 +0000 |
---|---|---|
committer | Jonas Paulsson <paulsson@linux.vnet.ibm.com> | 2018-01-20 16:05:10 +0000 |
commit | 7ad28863fb5cf098b3c8479cf0845263e297bbfc (patch) | |
tree | 68cdf73ac5e78bc2397c14598d73e1c60e33bc89 /llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp | |
parent | e6de5a100d51ca240a26ed4ab3ca7e3aa2026927 (diff) | |
download | bcm5719-llvm-7ad28863fb5cf098b3c8479cf0845263e297bbfc.tar.gz bcm5719-llvm-7ad28863fb5cf098b3c8479cf0845263e297bbfc.zip |
[SelectionDAG] Fix codegen of vector stores with non byte-sized elements.
This was completely broken, but hopefully fixed by this patch.
In cases where it is needed, a vector with non byte-sized elements is stored
by extracting, zero-extending, shift:ing and or:ing the elements into an
integer of the same width as the vector, which is then stored.
Review: Eli Friedman, Ulrich Weigand
https://reviews.llvm.org/D42100#inline-369520
https://bugs.llvm.org/show_bug.cgi?id=35520
llvm-svn: 323042
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp b/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp index 958cdc23560..eda73dbec4c 100644 --- a/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp @@ -662,7 +662,6 @@ SDValue VectorLegalizer::ExpandLoad(SDValue Op) { SDValue VectorLegalizer::ExpandStore(SDValue Op) { StoreSDNode *ST = cast<StoreSDNode>(Op.getNode()); - SDValue TF = TLI.scalarizeVectorStore(ST, DAG); AddLegalizedOperand(Op, TF); return TF; |