[llvm] 6c88ffe - [ARM] Fix the Changed value in the MVE lane interleaving pass.
David Green via llvm-commits
llvm-commits at lists.llvm.org
Sun Mar 28 15:48:18 PDT 2021
Author: David Green
Date: 2021-03-28T23:47:53+01:00
New Revision: 6c88ffeda31a78d3682c218564fc80d213d09181
URL: https://github.com/llvm/llvm-project/commit/6c88ffeda31a78d3682c218564fc80d213d09181
DIFF: https://github.com/llvm/llvm-project/commit/6c88ffeda31a78d3682c218564fc80d213d09181.diff
LOG: [ARM] Fix the Changed value in the MVE lane interleaving pass.
Added:
Modified:
llvm/lib/Target/ARM/MVELaneInterleavingPass.cpp
Removed:
################################################################################
diff --git a/llvm/lib/Target/ARM/MVELaneInterleavingPass.cpp b/llvm/lib/Target/ARM/MVELaneInterleavingPass.cpp
index c77130b7b2c3..1ccd64acb410 100644
--- a/llvm/lib/Target/ARM/MVELaneInterleavingPass.cpp
+++ b/llvm/lib/Target/ARM/MVELaneInterleavingPass.cpp
@@ -303,7 +303,7 @@ static bool tryInterleave(Instruction *Start,
LLVM_DEBUG(dbgs() << " with " << *Shuf << "\n");
}
- return false;
+ return true;
}
bool MVELaneInterleaving::runOnFunction(Function &F) {
More information about the llvm-commits
mailing list