1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 10:42:39 +01:00

[RISCV] Don't enable Interleaved Access Vectorization

The patch https://reviews.llvm.org/D101469 is intended to enable loop unrolling,
not interleaved access vectorization. The method bool enableInterleavedAccessVectorization()
should not be implemented.
This commit is contained in:
Luke 2021-06-16 22:38:24 +08:00
parent 981cf746b0
commit 1271774638

View File

@ -178,7 +178,6 @@ public:
} }
} }
bool enableInterleavedAccessVectorization() { return true; }
unsigned getMaxInterleaveFactor(unsigned VF) { unsigned getMaxInterleaveFactor(unsigned VF) {
return ST->getMaxInterleaveFactor(); return ST->getMaxInterleaveFactor();
} }