[Hexagon] Edit a comment. NFC

llvm-svn: 244130
This commit is contained in:
Krzysztof Parzyszek 2015-08-05 21:08:26 +00:00
parent 1d8ef29413
commit eca6f04074
1 changed files with 1 additions and 7 deletions

View File

@ -34,11 +34,5 @@ void HexagonTTIImpl::getUnrollingPreferences(Loop *L,
}
unsigned HexagonTTIImpl::getNumberOfRegisters(bool vector) const {
if (vector) {
// While its true that v60 has vector registers,
// we do not want to advertise it through this API
// as it enables LOOP and SLP vectorization.
return 0;
}
return 32;
return vector ? 0 : 32;
}