1*9880d681SAndroid Build Coastguard Worker; RUN: llc -mtriple=x86_64-pc-linux-gnu %s -o %t -filetype=obj 2*9880d681SAndroid Build Coastguard Worker; RUN: llvm-dwarfdump -debug-dump=info %t | FileCheck %s 3*9880d681SAndroid Build Coastguard Worker 4*9880d681SAndroid Build Coastguard Worker; ModuleID = 'test.c' 5*9880d681SAndroid Build Coastguard Worker 6*9880d681SAndroid Build Coastguard Worker@GLB = common global i32 0, align 4 7*9880d681SAndroid Build Coastguard Worker 8*9880d681SAndroid Build Coastguard Workerdefine i32 @f() nounwind !dbg !5 { 9*9880d681SAndroid Build Coastguard Worker %LOC = alloca i32, align 4 10*9880d681SAndroid Build Coastguard Worker call void @llvm.dbg.declare(metadata i32* %LOC, metadata !15, metadata !DIExpression()), !dbg !17 11*9880d681SAndroid Build Coastguard Worker %1 = load i32, i32* @GLB, align 4, !dbg !18 12*9880d681SAndroid Build Coastguard Worker store i32 %1, i32* %LOC, align 4, !dbg !18 13*9880d681SAndroid Build Coastguard Worker %2 = load i32, i32* @GLB, align 4, !dbg !19 14*9880d681SAndroid Build Coastguard Worker ret i32 %2, !dbg !19 15*9880d681SAndroid Build Coastguard Worker} 16*9880d681SAndroid Build Coastguard Worker 17*9880d681SAndroid Build Coastguard Workerdeclare void @llvm.dbg.declare(metadata, metadata, metadata) nounwind readnone 18*9880d681SAndroid Build Coastguard Worker 19*9880d681SAndroid Build Coastguard Worker!llvm.dbg.cu = !{!0} 20*9880d681SAndroid Build Coastguard Worker!llvm.module.flags = !{!21} 21*9880d681SAndroid Build Coastguard Worker 22*9880d681SAndroid Build Coastguard Worker!0 = distinct !DICompileUnit(language: DW_LANG_C99, producer: "clang version 3.0 (trunk)", isOptimized: false, emissionKind: FullDebug, file: !20, enums: !1, retainedTypes: !1, globals: !12, imports: !1) 23*9880d681SAndroid Build Coastguard Worker!1 = !{} 24*9880d681SAndroid Build Coastguard Worker!5 = distinct !DISubprogram(name: "f", line: 3, isLocal: false, isDefinition: true, virtualIndex: 6, isOptimized: false, unit: !0, file: !6, scope: !6, type: !7) 25*9880d681SAndroid Build Coastguard Worker!6 = !DIFile(filename: "test.c", directory: "/work/llvm/vanilla/test/DebugInfo") 26*9880d681SAndroid Build Coastguard Worker!7 = !DISubroutineType(types: !8) 27*9880d681SAndroid Build Coastguard Worker!8 = !{!9} 28*9880d681SAndroid Build Coastguard Worker!9 = !DIBasicType(tag: DW_TAG_base_type, name: "int", size: 32, align: 32, encoding: DW_ATE_signed) 29*9880d681SAndroid Build Coastguard Worker!12 = !{!14} 30*9880d681SAndroid Build Coastguard Worker!14 = !DIGlobalVariable(name: "GLB", line: 1, isLocal: false, isDefinition: true, scope: null, file: !6, type: !9, variable: i32* @GLB) 31*9880d681SAndroid Build Coastguard Worker!15 = !DILocalVariable(name: "LOC", line: 4, scope: !16, file: !6, type: !9) 32*9880d681SAndroid Build Coastguard Worker!16 = distinct !DILexicalBlock(line: 3, column: 9, file: !20, scope: !5) 33*9880d681SAndroid Build Coastguard Worker!17 = !DILocation(line: 4, column: 9, scope: !16) 34*9880d681SAndroid Build Coastguard Worker!18 = !DILocation(line: 4, column: 23, scope: !16) 35*9880d681SAndroid Build Coastguard Worker!19 = !DILocation(line: 5, column: 5, scope: !16) 36*9880d681SAndroid Build Coastguard Worker!20 = !DIFile(filename: "test.c", directory: "/work/llvm/vanilla/test/DebugInfo") 37*9880d681SAndroid Build Coastguard Worker 38*9880d681SAndroid Build Coastguard Worker; CHECK: DW_TAG_variable 39*9880d681SAndroid Build Coastguard Worker; CHECK-NOT: DW_TAG 40*9880d681SAndroid Build Coastguard Worker; CHECK: DW_AT_name [DW_FORM_strp] ( .debug_str[0x{{[0-9a-f]*}}] = "GLB") 41*9880d681SAndroid Build Coastguard Worker; CHECK-NOT: DW_TAG 42*9880d681SAndroid Build Coastguard Worker; CHECK: DW_AT_decl_file [DW_FORM_data1] ("/work/llvm/vanilla/test/DebugInfo{{[/\\]}}test.c") 43*9880d681SAndroid Build Coastguard Worker; CHECK-NOT: DW_TAG 44*9880d681SAndroid Build Coastguard Worker; CHECK: DW_AT_decl_line [DW_FORM_data1] (1) 45*9880d681SAndroid Build Coastguard Worker 46*9880d681SAndroid Build Coastguard Worker; CHECK: DW_TAG_variable 47*9880d681SAndroid Build Coastguard Worker; CHECK-NOT: DW_TAG 48*9880d681SAndroid Build Coastguard Worker; CHECK: DW_AT_name [DW_FORM_strp] ( .debug_str[0x{{[0-9a-f]*}}] = "LOC") 49*9880d681SAndroid Build Coastguard Worker; CHECK-NOT: DW_TAG 50*9880d681SAndroid Build Coastguard Worker; CHECK: DW_AT_decl_file [DW_FORM_data1] ("/work/llvm/vanilla/test/DebugInfo{{[/\\]}}test.c") 51*9880d681SAndroid Build Coastguard Worker; CHECK-NOT: DW_TAG 52*9880d681SAndroid Build Coastguard Worker; CHECK: DW_AT_decl_line [DW_FORM_data1] (4) 53*9880d681SAndroid Build Coastguard Worker 54*9880d681SAndroid Build Coastguard Worker!21 = !{i32 1, !"Debug Info Version", i32 3} 55