[Mlir-commits] [mlir] bb893fa - [mlir] Fix inlining-threshold.mlir test for NDEBUG builds.
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Wed Mar 13 09:26:53 PDT 2024
Author: Christian Sigg
Date: 2024-03-13T17:26:50+01:00
New Revision: bb893fa23f6c851d957d82e14bc1aa6fbbffcaaa
URL: https://github.com/llvm/llvm-project/commit/bb893fa23f6c851d957d82e14bc1aa6fbbffcaaa
DIFF: https://github.com/llvm/llvm-project/commit/bb893fa23f6c851d957d82e14bc1aa6fbbffcaaa.diff
LOG: [mlir] Fix inlining-threshold.mlir test for NDEBUG builds.
Added:
Modified:
mlir/test/Transforms/inlining-threshold.mlir
Removed:
################################################################################
diff --git a/mlir/test/Transforms/inlining-threshold.mlir b/mlir/test/Transforms/inlining-threshold.mlir
index b94115d8f26416..649408aab577ac 100644
--- a/mlir/test/Transforms/inlining-threshold.mlir
+++ b/mlir/test/Transforms/inlining-threshold.mlir
@@ -1,4 +1,4 @@
-// RUN: mlir-opt %s --mlir-disable-threading -inline='default-pipeline='' inlining-threshold=100' -debug-only=inliner-pass 2>&1 | FileCheck %s
+// RUN: mlir-opt %s -inline='default-pipeline= inlining-threshold=100' | FileCheck %s
// Check that inlining does not happen when the threshold is exceeded.
func.func @callee1(%arg : i32) -> i32 {
More information about the Mlir-commits
mailing list