[Mlir-commits] [mlir] [mlir][MathToLLVM] Fix vector type checks in math.absi lowering. (PR #195360)
Han-Chung Wang
llvmlistbot at llvm.org
Fri May 1 15:59:33 PDT 2026
================
@@ -143,7 +143,7 @@ struct IntOpWithFlagLowering
return success();
}
- if (!isa<VectorType>(llvmResultType))
+ if (!isa<VectorType>(resultType))
----------------
hanhanW wrote:
It looks like I'm reverting https://github.com/llvm/llvm-project/commit/af6e3c045b07ebc7ce09318c90048f407a15b391 from @AGindinson . So I'm asking the original author for a review.
https://github.com/llvm/llvm-project/pull/195360
More information about the Mlir-commits
mailing list