[llvm-branch-commits] [mlir] [mlir][LLVM] Delete `LLVMFixedVectorType` and `LLVMScalableVectorType` (PR #133286)
Diego Caballero via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Thu Mar 27 13:32:30 PDT 2025
================
@@ -1033,7 +1033,7 @@ llvm.func @scalable_vector() -> i16 {
llvm.func @scalable_llvm_vector() -> i16 {
%0 = llvm.mlir.constant(1 : i32) : i32
// CHECK: llvm.alloca
- %1 = llvm.alloca %0 x !llvm.vec<? x 4 x ppc_fp128> : (i32) -> !llvm.ptr
+ %1 = llvm.alloca %0 x vector<[4] x !llvm.ppc_fp128> : (i32) -> !llvm.ptr
----------------
dcaballe wrote:
Interesting... I didn't expect a scalable vector with this element type...
https://github.com/llvm/llvm-project/pull/133286
More information about the llvm-branch-commits
mailing list