[Mlir-commits] [mlir] [mlir][spirv] Handle vectors of integers of unsupported width (PR #118663)
Andrea Faulds
llvmlistbot at llvm.org
Wed Dec 4 08:38:28 PST 2024
================
@@ -348,6 +353,9 @@ convertVectorType(const spirv::TargetEnv &targetEnv,
}
Type elementType = convertSubByteIntegerType(options, intType);
+ if (!elementType)
+ return nullptr;
----------------
andfau-amd wrote:
Thanks. If you want to, you could put this in the pull-request description so it ends up in the commit message, but that may be unnecessary.
https://github.com/llvm/llvm-project/pull/118663
More information about the Mlir-commits
mailing list