blob: 7cbe9ce93b974de25f230ca13427a0c3eee285c3 [file] [log] [blame]
Adrian Prantl612ac862017-02-28 23:48:42 +00001; RUN: not llvm-as < %s -o /dev/null 2>&1 | FileCheck %s
2
3declare void @llvm.dbg.declare(metadata, metadata, metadata)
4declare void @llvm.dbg.value(metadata, i64, metadata, metadata)
5
6define void @foo() !dbg !2 {
7entry:
8 %a = alloca i32
9 ; CHECK: conflicting debug info for argument
10 call void @llvm.dbg.value(metadata i32 0, i64 0, metadata !3, metadata !DIExpression()), !dbg !6
11 call void @llvm.dbg.declare(metadata i32* %a, metadata !4, metadata !DIExpression()), !dbg !6
12 ret void, !dbg !6
13}
14
15!llvm.dbg.cu = !{!0}
16!llvm.module.flags = !{!7, !8}
17
18!0 = distinct !DICompileUnit(language: DW_LANG_C99, file: !1, producer: "clang", emissionKind: FullDebug)
19!1 = !DIFile(filename: "x.c", directory: "/")
20!2 = distinct !DISubprogram(name: "foo", scope: !0, isDefinition: true, unit: !0)
21!3 = !DILocalVariable(name: "a", arg: 1, scope: !2, file: !1, line: 1, type: !5)
22!4 = !DILocalVariable(name: "b", arg: 1, scope: !2, file: !1, line: 1, type: !5)
23!5 = !DIBasicType(name: "int", size: 32, encoding: DW_ATE_signed)
24!6 = !DILocation(line: 1, scope: !2)
25!7 = !{i32 2, !"Dwarf Version", i32 4}
26!8 = !{i32 1, !"Debug Info Version", i32 3}