mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
[CodeGen] Fix warnings in getVectorElementCount()
In EVT::getVectorElementCount() when the type is not simple we should return getExtendedVectorElementCount() from the function instead of constructing the ElementCount object manually. I discovered this warning in an existing test: test/CodeGen/AArch64/sve-intrinsics-loads.ll Differential Revision: https://reviews.llvm.org/D81927
This commit is contained in:
parent
4399d793fa
commit
59b1a7011c
@ -299,7 +299,7 @@ namespace llvm {
|
||||
if (isSimple())
|
||||
return V.getVectorElementCount();
|
||||
|
||||
return {getExtendedVectorNumElements(), isExtendedScalableVector()};
|
||||
return getExtendedVectorElementCount();
|
||||
}
|
||||
|
||||
/// Given a vector type, return the minimum number of elements it contains.
|
||||
|
Loading…
Reference in New Issue
Block a user