[Mlir-commits] [mlir] [mlir][dataflow] Fix for integer range analysis propagation bug (PR #93199)
Krzysztof Drewniak
llvmlistbot at llvm.org
Thu May 23 23:14:49 PDT 2024
================
@@ -27,6 +27,9 @@ namespace intrange {
using InferRangeFn =
function_ref<ConstantIntRanges(ArrayRef<ConstantIntRanges>)>;
+using OptionalRangeFn =
+ std::function<OptionalIntRanges(ArrayRef<OptionalIntRanges>)>;
----------------
krzysz00 wrote:
Shouldn't this be `function_ref`? Or is that deprecated?
https://github.com/llvm/llvm-project/pull/93199
More information about the Mlir-commits
mailing list