• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# RUN: not --crash llc -run-pass machineverifier -o - %s 2>&1 | FileCheck %s
2
3# CHECK: Bad machine code: Missing DebugLoc for debug instruction
4# CHECK: - instruction: DBG_VALUE 1, 2, 3, 4
5
6--- |
7
8  define i32 @foo() {
9  entry:
10    ret i32 0
11  }
12
13...
14---
15name:            foo
16body: |
17  bb.0.entry:
18    DBG_VALUE 1, 2, 3, 4
19...
20