[Mlir-commits] [llvm] [mlir] eliminating g++ warnings (PR #105520)

Mehdi Amini llvmlistbot at llvm.org
Wed Aug 21 14:15:40 PDT 2024


================
@@ -1593,7 +1593,8 @@ foldTrait(Operation *, ArrayRef<Attribute>, SmallVectorImpl<OpFoldResult> &) {
 /// Given a tuple type containing a set of traits, return the result of folding
 /// the given operation.
 template <typename... Ts>
-static LogicalResult foldTraits(Operation *op, ArrayRef<Attribute> operands,
+static LogicalResult foldTraits([[maybe_unused]] Operation *op,
+                                [[maybe_unused]] ArrayRef<Attribute> operands,
----------------
joker-eph wrote:

I believe we already disable this warning (is it this one?) with some known version of GCC that have false positives: https://github.com/llvm/llvm-project/blob/main/mlir/CMakeLists.txt#L87-L94

https://github.com/llvm/llvm-project/pull/105520


More information about the Mlir-commits mailing list