diff --git a/mlir/lib/Reducer/ReductionNode.cpp b/mlir/lib/Reducer/ReductionNode.cpp index 9f0f461d676e7a..83892be4d4f541 100644 --- a/mlir/lib/Reducer/ReductionNode.cpp +++ b/mlir/lib/Reducer/ReductionNode.cpp @@ -28,8 +28,7 @@ ReductionNode::ReductionNode( llvm::SpecificBumpPtrAllocator &allocator) /// Root node will have the parent pointer point to themselves. : parent(parentNode == nullptr ? this : parentNode), - size(std::numeric_limits::max()), - interesting(Tester::Interestingness::Untested), ranges(ranges), + size(std::numeric_limits::max()), ranges(ranges), startRanges(ranges), allocator(allocator) { if (parent != this) if (failed(initialize(parent->getModule(), parent->getRegion())))