forked from OSchip/llvm-project
0aff3174dc
Root cause is VectorBlockGenerator::copyStmt iterates all instructions in basic block, however some load instructions may be not unnecessary thus removed by simplification. As a result, these load instructions don't have a corresponding array. Looking at BlockGenerator::copyBB, it only iterates instructions list of ScopStmt. Given it must be a block type scop in case of vectorization, I think we should do the same in VectorBlockGenerator::copyStmt. Patch by bin.narwal <bin.narwal@gmail.com> Differential Revision: https://reviews.llvm.org/D70076 |
||
---|---|---|
.. | ||
BlockGenerators.cpp | ||
CodeGeneration.cpp | ||
CodegenCleanup.cpp | ||
IRBuilder.cpp | ||
IslAst.cpp | ||
IslExprBuilder.cpp | ||
IslNodeBuilder.cpp | ||
LoopGenerators.cpp | ||
LoopGeneratorsGOMP.cpp | ||
LoopGeneratorsKMP.cpp | ||
ManagedMemoryRewrite.cpp | ||
PPCGCodeGeneration.cpp | ||
PerfMonitor.cpp | ||
RuntimeDebugBuilder.cpp | ||
Utils.cpp |