[Mlir-commits] [mlir] [mlir][LLVM] Let decomposeValue/composeValue handle aggregates (PR #183405)
Erick Ochoa Lopez
llvmlistbot at llvm.org
Fri Feb 27 09:35:40 PST 2026
================
@@ -410,7 +455,8 @@ SmallVector<Value> mlir::LLVM::decomposeValue(OpBuilder &builder, Location loc,
auto largerInt = builder.getIntegerType(dstBitWidth);
Value res = LLVM::ZExtOp::create(builder, loc, largerInt, src);
- return {res};
+ result.push_back(res);
+ return;
}
assert(srcBitWidth % dstBitWidth == 0 &&
"src bit width must be a multiple of dst bit width");
----------------
amd-eochoalo wrote:
A follow up PR would be ok. :)
https://github.com/llvm/llvm-project/pull/183405
More information about the Mlir-commits
mailing list