You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
931 B
24 lines
931 B
; RUN: llc -mtriple x86_64-pc-linux-gnu < %s | FileCheck %s
|
|
|
|
; CHECK: .long .Lline_table_start0 # DW_AT_stmt_list
|
|
|
|
; CHECK: .section .debug_line,"",@progbits
|
|
; CHECK-NEXT: .Lline_table_start0:
|
|
|
|
define void @f() !dbg !0 {
|
|
entry:
|
|
ret void
|
|
}
|
|
|
|
!llvm.dbg.cu = !{!2}
|
|
!llvm.module.flags = !{!7}
|
|
!5 = !{!0}
|
|
|
|
!0 = distinct !DISubprogram(name: "f", line: 1, isLocal: false, isDefinition: true, virtualIndex: 6, flags: DIFlagPrototyped, isOptimized: true, unit: !2, scopeLine: 1, file: !6, scope: !1, type: !3)
|
|
!1 = !DIFile(filename: "test2.c", directory: "/home/espindola/llvm")
|
|
!2 = distinct !DICompileUnit(language: DW_LANG_C99, producer: "clang version 3.0 ()", isOptimized: true, emissionKind: FullDebug, file: !6, enums: !{}, retainedTypes: !{})
|
|
!3 = !DISubroutineType(types: !4)
|
|
!4 = !{null}
|
|
!6 = !DIFile(filename: "test2.c", directory: "/home/espindola/llvm")
|
|
!7 = !{i32 1, !"Debug Info Version", i32 3}
|