[llvm] [RISCV] Change vector tuple type's TypeSize to scalable (PR #114329)
Craig Topper via llvm-commits
llvm-commits at lists.llvm.org
Sat Nov 9 19:14:30 PST 2024
================
@@ -185,7 +185,8 @@ namespace llvm {
/// Return true if the type is a scalable type.
bool isScalableVT() const {
- return isScalableVector() || isScalableTargetExtVT();
+ return isScalableVector() || isScalableTargetExtVT() ||
+ isRISCVVectorTuple();
----------------
topperc wrote:
Should isRISCVVectorTuple() be part of isScalableTargetExtVT()?
https://github.com/llvm/llvm-project/pull/114329
More information about the llvm-commits
mailing list