diff options
Diffstat (limited to 'test/DebugInfo/X86/dbg-i128-const.ll')
-rw-r--r-- | test/DebugInfo/X86/dbg-i128-const.ll | 27 |
1 files changed, 14 insertions, 13 deletions
diff --git a/test/DebugInfo/X86/dbg-i128-const.ll b/test/DebugInfo/X86/dbg-i128-const.ll index 71654cb..d172f01 100644 --- a/test/DebugInfo/X86/dbg-i128-const.ll +++ b/test/DebugInfo/X86/dbg-i128-const.ll @@ -1,11 +1,12 @@ ; RUN: llc -mtriple=x86_64-linux < %s | FileCheck %s +; CHECK: .section .debug_info ; CHECK: DW_AT_const_value ; CHECK-NEXT: 42 define i128 @__foo(i128 %a, i128 %b) nounwind { entry: - tail call void @llvm.dbg.value(metadata i128 42 , i64 0, metadata !1, metadata !{!"0x102"}), !dbg !11 + tail call void @llvm.dbg.value(metadata i128 42 , i64 0, metadata !1, metadata !MDExpression()), !dbg !11 %add = add i128 %a, %b, !dbg !11 ret i128 %add, !dbg !11 } @@ -16,19 +17,19 @@ declare void @llvm.dbg.value(metadata, i64, metadata, metadata) nounwind readnon !llvm.module.flags = !{!16} !0 = !{i128 42 } -!1 = !{!"0x100\00MAX\0029\000", !2, !4, !8} ; [ DW_TAG_auto_variable ] -!2 = !{!"0xb\0026\000\000", !13, !3} ; [ DW_TAG_lexical_block ] -!3 = !{!"0x2e\00__foo\00__foo\00__foo\0026\000\001\000\006\000\000\0026", !13, !4, !6, null, i128 (i128, i128)* @__foo, null, null, null} ; [ DW_TAG_subprogram ] -!4 = !{!"0x29", !13} ; [ DW_TAG_file_type ] -!5 = !{!"0x11\001\00clang\001\00\000\00\000", !13, !15, !15, !12, null, null} ; [ DW_TAG_compile_unit ] -!6 = !{!"0x15\00\000\000\000\000\000\000", !13, !4, null, !7, null, null, null} ; [ DW_TAG_subroutine_type ] [line 0, size 0, align 0, offset 0] [from ] +!1 = !MDLocalVariable(tag: DW_TAG_auto_variable, name: "MAX", line: 29, scope: !2, file: !4, type: !8) +!2 = distinct !MDLexicalBlock(line: 26, column: 0, file: !13, scope: !3) +!3 = !MDSubprogram(name: "__foo", linkageName: "__foo", line: 26, isLocal: false, isDefinition: true, virtualIndex: 6, isOptimized: false, scopeLine: 26, file: !13, scope: !4, type: !6, function: i128 (i128, i128)* @__foo) +!4 = !MDFile(filename: "foo.c", directory: "/tmp") +!5 = !MDCompileUnit(language: DW_LANG_C89, producer: "clang", isOptimized: true, emissionKind: 0, file: !13, enums: !15, retainedTypes: !15, subprograms: !12, imports: null) +!6 = !MDSubroutineType(types: !7) !7 = !{!8, !8, !8} -!8 = !{!"0x16\00ti_int\0078\000\000\000\000", !14, !4, !10} ; [ DW_TAG_typedef ] -!9 = !{!"0x29", !14} ; [ DW_TAG_file_type ] -!10 = !{!"0x24\00\000\00128\00128\000\000\005", !13, !4} ; [ DW_TAG_base_type ] +!8 = !MDDerivedType(tag: DW_TAG_typedef, name: "ti_int", line: 78, file: !14, scope: !4, baseType: !10) +!9 = !MDFile(filename: "myint.h", directory: "/tmp") +!10 = !MDBasicType(tag: DW_TAG_base_type, size: 128, align: 128, encoding: DW_ATE_signed) !11 = !MDLocation(line: 29, scope: !2) !12 = !{!3} -!13 = !{!"foo.c", !"/tmp"} -!14 = !{!"myint.h", !"/tmp"} +!13 = !MDFile(filename: "foo.c", directory: "/tmp") +!14 = !MDFile(filename: "myint.h", directory: "/tmp") !15 = !{i32 0} -!16 = !{i32 1, !"Debug Info Version", i32 2} +!16 = !{i32 1, !"Debug Info Version", i32 3} |