[Mlir-commits] [mlir] 720dd81 - [MLIR] Fix after 4b27825.

Christian Sigg llvmlistbot at llvm.org
Wed Sep 28 01:17:10 PDT 2022


Author: Christian Sigg
Date: 2022-09-28T10:15:41+02:00
New Revision: 720dd814ba8707284cc3806f566334de75aee14d

URL: https://github.com/llvm/llvm-project/commit/720dd814ba8707284cc3806f566334de75aee14d
DIFF: https://github.com/llvm/llvm-project/commit/720dd814ba8707284cc3806f566334de75aee14d.diff

LOG: [MLIR] Fix after 4b27825.

The 'RUN' command was missing the input file argument.

Added: 
    

Modified: 
    mlir/test/Pass/pipeline-invalid.mlir

Removed: 
    


################################################################################
diff  --git a/mlir/test/Pass/pipeline-invalid.mlir b/mlir/test/Pass/pipeline-invalid.mlir
index da39e4c3d4351..dcc4f0a20c9dc 100644
--- a/mlir/test/Pass/pipeline-invalid.mlir
+++ b/mlir/test/Pass/pipeline-invalid.mlir
@@ -1,4 +1,4 @@
-// RUN: mlir-opt --no-implicit-module --canonicalize --verify-diagnostics --split-input-file
+// RUN: mlir-opt --no-implicit-module --canonicalize --verify-diagnostics --split-input-file %s
 
 // expected-error at below {{trying to schedule a pass on an operation not marked as 'IsolatedFromAbove'}}
 arith.constant 0


        


More information about the Mlir-commits mailing list