Revert r354244 "[DAGCombiner] Eliminate dead stores to stack."
[llvm-complete.git] / test / Verifier / metadata-function-dbg.ll
blobefef9a447f4c724e3fd1a0755536aa811456177b
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 {
8   unreachable
11 ; CHECK:      DISubprogram attached to more than one function
12 define void @f3() !dbg !4 {
13   unreachable
16 ; CHECK:      DISubprogram attached to more than one function
17 define void @f4() !dbg !4 {
18   unreachable
21 ; CHECK-NOT:  !dbg
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 {
26   unreachable
29 ; CHECK: warning: ignoring invalid debug info
30 !llvm.module.flags = !{!0}
31 !0 = !{i32 2, !"Debug Info Version", i32 3}
33 !llvm.dbg.cu = !{!1}
34 !1 = distinct !DICompileUnit(language: DW_LANG_C99, file: !2)
35 !2 = !DIFile(filename: "t.c", directory: "/path/to/dir")
36 !3 = !{}
37 !4 = distinct !DISubprogram(name: "foo", scope: !1, file: !2, unit: !1)