You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
617 B
14 lines
617 B
// RUN: not mlir-opt %s -o - 2>&1 | FileCheck %s
|
|
// This test verifies that diagnostic handler can emit the call stack successfully.
|
|
|
|
// -----
|
|
|
|
// Emit the first available call stack in the fused location.
|
|
func @constant_out_of_range() {
|
|
// CHECK: mysource1:0:0: error: 'std.constant' op requires attribute's type ('i64') to match op's return type ('i1')
|
|
// CHECK-NEXT: mysource2:1:0: note: called from
|
|
// CHECK-NEXT: mysource3:2:0: note: called from
|
|
%x = "std.constant"() {value = 100} : () -> i1 loc(fused["bar", callsite("foo"("mysource1":0:0) at callsite("mysource2":1:0 at "mysource3":2:0))])
|
|
return
|
|
}
|