blob: df73936a6f78bb0bcf1bed76560808ea9e60ccb1 [file] [log] [blame]
David Blaikie866c87f2014-05-11 17:25:50 +00001; REQUIRES: object-emission
2
Adrian Prantl16aa4cf2017-09-11 23:05:20 +00003; RUN: %llc_dwarf -O0 -filetype=obj %s -o - | llvm-dwarfdump -v -debug-info - | FileCheck %s
David Blaikie866c87f2014-05-11 17:25:50 +00004; Use correct signedness when emitting constants of derived (sugared) types.
5
David Blaikie866c87f2014-05-11 17:25:50 +00006; CHECK: DW_AT_const_value [DW_FORM_sdata] (42)
7; CHECK: DW_AT_const_value [DW_FORM_udata] (117)
David Blaikiec405c9c2014-05-16 21:53:09 +00008; CHECK: DW_AT_const_value [DW_FORM_udata] (7)
David Blaikie866c87f2014-05-11 17:25:50 +00009
10; Function Attrs: uwtable
Adrian Prantl274bcbc2017-06-16 22:40:04 +000011define void @main() #0 !dbg !4 {
David Blaikie866c87f2014-05-11 17:25:50 +000012entry:
Adrian Prantlabe04752017-07-28 20:21:02 +000013 tail call void @llvm.dbg.value(metadata i32 42, metadata !10, metadata !DIExpression()), !dbg !21
14 tail call void @llvm.dbg.value(metadata i32 117, metadata !12, metadata !DIExpression()), !dbg !24
15 tail call void @llvm.dbg.value(metadata i16 7, metadata !15, metadata !DIExpression()), !dbg !27
Adrian Prantl274bcbc2017-06-16 22:40:04 +000016 ret void, !dbg !29
David Blaikie866c87f2014-05-11 17:25:50 +000017}
18
David Blaikie866c87f2014-05-11 17:25:50 +000019; Function Attrs: nounwind readnone
Adrian Prantlabe04752017-07-28 20:21:02 +000020declare void @llvm.dbg.value(metadata, metadata, metadata) #2
David Blaikie866c87f2014-05-11 17:25:50 +000021
Adrian Prantl274bcbc2017-06-16 22:40:04 +000022attributes #0 = { uwtable }
David Blaikie866c87f2014-05-11 17:25:50 +000023attributes #2 = { nounwind readnone }
24
25!llvm.dbg.cu = !{!0}
David Blaikiec405c9c2014-05-16 21:53:09 +000026!llvm.module.flags = !{!17, !18}
27!llvm.ident = !{!19}
David Blaikie866c87f2014-05-11 17:25:50 +000028
Adrian Prantl75819ae2016-04-15 15:57:41 +000029!0 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, producer: "clang version 3.5.0 ", isOptimized: true, emissionKind: FullDebug, file: !1, enums: !2, retainedTypes: !2, globals: !2, imports: !2)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +000030!1 = !DIFile(filename: "const.cpp", directory: "/tmp/dbginfo")
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +000031!2 = !{}
Shiva Chen2c864552018-05-09 02:40:45 +000032!4 = distinct !DISubprogram(name: "main", line: 4, isLocal: false, isDefinition: true, virtualIndex: 6, flags: DIFlagPrototyped, isOptimized: true, unit: !0, scopeLine: 4, file: !1, scope: !5, type: !6, retainedNodes: !9)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +000033!5 = !DIFile(filename: "const.cpp", directory: "/tmp/dbginfo")
34!6 = !DISubroutineType(types: !7)
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +000035!7 = !{!8}
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +000036!8 = !DIBasicType(tag: DW_TAG_base_type, name: "int", size: 32, align: 32, encoding: DW_ATE_signed)
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +000037!9 = !{!10, !12, !15}
Duncan P. N. Exon Smithed013cd2015-07-31 18:58:39 +000038!10 = !DILocalVariable(name: "i", line: 5, scope: !4, file: !5, type: !11)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +000039!11 = !DIDerivedType(tag: DW_TAG_const_type, baseType: !8)
Duncan P. N. Exon Smithed013cd2015-07-31 18:58:39 +000040!12 = !DILocalVariable(name: "j", line: 7, scope: !4, file: !5, type: !13)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +000041!13 = !DIDerivedType(tag: DW_TAG_const_type, baseType: !14)
42!14 = !DIBasicType(tag: DW_TAG_base_type, name: "unsigned int", size: 32, align: 32, encoding: DW_ATE_unsigned)
Duncan P. N. Exon Smithed013cd2015-07-31 18:58:39 +000043!15 = !DILocalVariable(name: "c", line: 9, scope: !4, file: !5, type: !16)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +000044!16 = !DIBasicType(tag: DW_TAG_base_type, name: "char16_t", size: 16, align: 16, encoding: 16)
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +000045!17 = !{i32 2, !"Dwarf Version", i32 4}
Duncan P. N. Exon Smithe2741802015-03-03 17:24:31 +000046!18 = !{i32 1, !"Debug Info Version", i32 3}
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +000047!19 = !{!"clang version 3.5.0 "}
48!20 = !{i32 42}
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +000049!21 = !DILocation(line: 5, scope: !4)
50!22 = !DILocation(line: 6, scope: !4)
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +000051!23 = !{i32 117}
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +000052!24 = !DILocation(line: 7, scope: !4)
53!25 = !DILocation(line: 8, scope: !4)
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +000054!26 = !{i16 7}
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +000055!27 = !DILocation(line: 9, scope: !4)
56!28 = !DILocation(line: 10, scope: !4)
57!29 = !DILocation(line: 11, scope: !4)