Make test more lenient for custom clang version strings
[llvm-project.git] / llvm / test / CodeGen / MIR / Generic / dbg-value-missing-loc.mir
blob0ee7a5341c23d9ba511fd6ebd6f1254f643153dd
1 # RUN: not --crash llc -run-pass machineverifier -o - %s 2>&1 | FileCheck %s
2 # RUN: not --crash llc --passes='machine-function(verify)' -o - %s 2>&1 | FileCheck %s
4 # CHECK: Bad machine code: Missing DebugLoc for debug instruction
5 # CHECK: - instruction: DBG_VALUE 1, 2, 3, 4
7 --- |
9   define i32 @foo() {
10   entry:
11     ret i32 0
12   }
14 ...
15 ---
16 name:            foo
17 body: |
18   bb.0.entry:
19     DBG_VALUE 1, 2, 3, 4
20 ...