diff options
| author | Elena Demikhovsky <elena.demikhovsky@intel.com> | 2016-10-09 10:48:52 +0000 |
|---|---|---|
| committer | Elena Demikhovsky <elena.demikhovsky@intel.com> | 2016-10-09 10:48:52 +0000 |
| commit | 5b10aa1f1e363fe21ddaa40b7736b22a538b9181 (patch) | |
| tree | b3fbcda4b85d7376c2427134beaddf1334b38944 /llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp | |
| parent | b27028875263e58094e81181a08e59a4c59a8b06 (diff) | |
| download | bcm5719-llvm-5b10aa1f1e363fe21ddaa40b7736b22a538b9181.tar.gz bcm5719-llvm-5b10aa1f1e363fe21ddaa40b7736b22a538b9181.zip | |
DAG: Setting Masked-Expand-Load as a variant of Masked-Load node
Masked-expand-load node represents load operation that loads a variable amount of elements from memory according to amount of "true" bits in the mask and expands the loaded elements according to their position in the mask vector.
Right now, the node is used in intrinsics for VEXPAND* instructions.
The work is done towards implementation of masked.expandload and masked.compressstore intrinsics.
Differential Revision: https://reviews.llvm.org/D25322
llvm-svn: 283694
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp')
| -rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp index 4ae94e0befa..2aaab4b0d87 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp @@ -3821,7 +3821,7 @@ void SelectionDAGBuilder::visitMaskedLoad(const CallInst &I) { Alignment, AAInfo, Ranges); SDValue Load = DAG.getMaskedLoad(VT, sdl, InChain, Ptr, Mask, Src0, VT, MMO, - ISD::NON_EXTLOAD); + ISD::NON_EXTLOAD, false); if (AddToChain) { SDValue OutChain = Load.getValue(1); DAG.setRoot(OutChain); |

