[all-commits] [llvm/llvm-project] a9304e: Fix remaining build failures with GCC 8.3 (#83266)
RoboTux via All-commits
all-commits at lists.llvm.org
Tue Mar 5 11:32:39 PST 2024
Branch: refs/heads/main
Home: https://github.com/llvm/llvm-project
Commit: a9304edf20756dd63f896a98bad89e9eac54aebd
https://github.com/llvm/llvm-project/commit/a9304edf20756dd63f896a98bad89e9eac54aebd
Author: Thomas Preud'homme <thomas.preudhomme at arm.com>
Date: 2024-03-05 (Tue, 05 Mar 2024)
Changed paths:
M mlir/include/mlir/IR/ValueRange.h
M mlir/lib/Dialect/Bufferization/Transforms/OwnershipBasedBufferDeallocation.cpp
M mlir/lib/Dialect/ControlFlow/Transforms/BufferDeallocationOpInterfaceImpl.cpp
M mlir/lib/Dialect/Linalg/Transforms/Fusion.cpp
M mlir/lib/IR/OperationSupport.cpp
M mlir/lib/Transforms/Utils/CFGToSCF.cpp
Log Message:
-----------
Fix remaining build failures with GCC 8.3 (#83266)
When compiling for GCC 8.x (< 8.4), SFINAE is disabled for
iterator_range constructor causing ambiguous resolution to construct an
OperandRange from a MutableOperatorRange, even in the presence of a
static_cast<OperatorRange>. This adds an explicit conversion method to
lift the ambiguity.
Tested with a full MLIR build with GCC 8.3.
To unsubscribe from these emails, change your notification settings at https://github.com/llvm/llvm-project/settings/notifications
More information about the All-commits
mailing list