repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[mlir] Improve error message when number of operands and types differ (#118488)
[llvm-project.git]
/
mlir
/
test
/
Analysis
/
DataFlow
/
test-last-modified-error.mlir
blob
57476e60d3c2a9137065bf27897d13cc677aeb12
1
// RUN: not mlir-opt -test-last-modified %s 2>&1 | FileCheck %s
2
3
// test error propagation from UnderlyingValueAnalysis::visitOperation
4
// CHECK: this op is always fails
5
func.func @test() {
6
%c0 = arith.constant { always_fail } 0 : i32
7
return
8
}