diff options
author | Christian Sigg <chsigg@users.noreply.github.com> | 2024-03-13 17:26:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-13 17:26:50 +0100 |
commit | bb893fa23f6c851d957d82e14bc1aa6fbbffcaaa (patch) | |
tree | 75cf2b0effb79528f7b8c9be3a897a4c4defe13a | |
parent | 5facb406e6417987ac5dfabd8f04510d7bc3fbc6 (diff) | |
download | llvm-bb893fa23f6c851d957d82e14bc1aa6fbbffcaaa.zip llvm-bb893fa23f6c851d957d82e14bc1aa6fbbffcaaa.tar.gz llvm-bb893fa23f6c851d957d82e14bc1aa6fbbffcaaa.tar.bz2 |
[mlir] Fix inlining-threshold.mlir test for NDEBUG builds.
-rw-r--r-- | mlir/test/Transforms/inlining-threshold.mlir | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mlir/test/Transforms/inlining-threshold.mlir b/mlir/test/Transforms/inlining-threshold.mlir index b94115d..649408a 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 { |