mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 10:42:39 +01:00
[SVE] Remove calls to isScalable from Hexagon
Reviewers: efriedma, sdesmalen, kparzysz, colinl Reviewed By: kparzysz Subscribers: tschuett, hiraditya, rkruppe, psnobl, llvm-commits Tags: #llvm Differential Revision: https://reviews.llvm.org/D77757
This commit is contained in:
parent
967ec6cd21
commit
9c9d3ddb66
@ -45,7 +45,7 @@ bool HexagonTTIImpl::useHVX() const {
|
||||
|
||||
bool HexagonTTIImpl::isTypeForHVX(Type *VecTy) const {
|
||||
assert(VecTy->isVectorTy());
|
||||
if (cast<VectorType>(VecTy)->isScalable())
|
||||
if (isa<ScalableVectorType>(VecTy))
|
||||
return false;
|
||||
// Avoid types like <2 x i32*>.
|
||||
if (!cast<VectorType>(VecTy)->getElementType()->isIntegerTy())
|
||||
|
Loading…
Reference in New Issue
Block a user