[Mlir-commits] [mlir] [mlir][MathToLLVM] Fix vector type checks in math.absi lowering. (PR #195360)
Artem Gindinson
llvmlistbot at llvm.org
Wed May 6 23:12:05 PDT 2026
================
@@ -143,7 +143,7 @@ struct IntOpWithFlagLowering
return success();
}
- if (!isa<VectorType>(llvmResultType))
+ if (!isa<VectorType>(resultType))
----------------
AGindinson wrote:
@hanhanW Thanks for the tag and sorry for the delayed response – I was off for a few days. Makes sense!
https://github.com/llvm/llvm-project/pull/195360
More information about the Mlir-commits
mailing list