brintos

brintos / llvm-project-archived public Read only

0
0
Text · 295 B · ecfb9c6 Raw
14 lines · plain
1// RUN: not mlir-opt %s -o - --split-input-file 2>&1 | FileCheck %s2// This test verifies that diagnostic handler doesn't emit splits.3 4 5// -----6 7 8 9func.func @constant_out_of_range() {10  // CHECK: mlir:11:8: error: 'arith.constant'11  %x = "arith.constant"() {value = 100} : () -> i112  return13}14