brintos

brintos / llvm-project-archived public Read only

0
0
Text · 619 B · 592656c Raw
14 lines · plain
1// RUN: not mlir-opt %s -o - 2>&1 | FileCheck %s2// This test verifies that diagnostic handler can emit the call stack successfully.3 4// -----5 6// Emit the first available call stack in the fused location.7func.func @constant_out_of_range() {8  // CHECK: mysource1:0:0: error: 'arith.constant' op failed to verify that all of {value, result} have same type9  // CHECK-NEXT: mysource2:1:0: note: called from10  // CHECK-NEXT: mysource3:2:0: note: called from11  %x = "arith.constant"() {value = 100} : () -> i1 loc(fused["bar", callsite("foo"("mysource1":0:0) at callsite("mysource2":1:0 at "mysource3":2:0))])12  return13}14