mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 10:42:39 +01:00
[Hexagon] Return 1 instead of 0 from getMaxInterleaveFactor
This commit is contained in:
parent
45b43d4e29
commit
9ee6426bce
@ -108,7 +108,7 @@ unsigned HexagonTTIImpl::getNumberOfRegisters(bool Vector) const {
|
||||
}
|
||||
|
||||
unsigned HexagonTTIImpl::getMaxInterleaveFactor(unsigned VF) {
|
||||
return useHVX() ? 2 : 0;
|
||||
return useHVX() ? 2 : 1;
|
||||
}
|
||||
|
||||
unsigned HexagonTTIImpl::getRegisterBitWidth(bool Vector) const {
|
||||
|
Loading…
Reference in New Issue
Block a user