1 ; RUN: llvm-as %s -disable-output 2>&1 | FileCheck %s
3 ; CHECK: function declaration may not have a !dbg attachment
4 declare !dbg !4 void @f1()
6 ; CHECK: function must have a single !dbg attachment
7 define void @f2() !dbg !4 !dbg !4 {
11 ; CHECK: DISubprogram attached to more than one function
12 define void @f3() !dbg !4 {
16 ; CHECK: DISubprogram attached to more than one function
17 define void @f4() !dbg !4 {
22 ; CHECK: function !dbg attachment must be a subprogram
23 ; CHECK-NEXT: void ()* @bar
24 ; CHECK-NEXT: !{{[0-9]+}} = !{}
25 define void @bar() !dbg !3 {
29 ; CHECK: warning: ignoring invalid debug info
30 !llvm.module.flags = !{!0}
31 !0 = !{i32 2, !"Debug Info Version", i32 3}
34 !1 = distinct !DICompileUnit(language: DW_LANG_C99, file: !2)
35 !2 = !DIFile(filename: "t.c", directory: "/path/to/dir")
37 !4 = distinct !DISubprogram(name: "foo", scope: !1, file: !2, unit: !1)