sugared-constants.ll 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. ; REQUIRES: object-emission
  2. ; RUN: %llc_dwarf -O0 -filetype=obj %s -o - | llvm-dwarfdump -v -debug-info - | FileCheck %s
  3. ; Use correct signedness when emitting constants of derived (sugared) types.
  4. ; CHECK: DW_AT_const_value [DW_FORM_sdata] (42)
  5. ; CHECK: DW_AT_const_value [DW_FORM_udata] (117)
  6. ; CHECK: DW_AT_const_value [DW_FORM_udata] (7)
  7. ; Function Attrs: uwtable
  8. define void @main() #0 !dbg !4 {
  9. entry:
  10. tail call void @llvm.dbg.value(metadata i32 42, metadata !10, metadata !DIExpression()), !dbg !21
  11. tail call void @llvm.dbg.value(metadata i32 117, metadata !12, metadata !DIExpression()), !dbg !24
  12. tail call void @llvm.dbg.value(metadata i16 7, metadata !15, metadata !DIExpression()), !dbg !27
  13. ret void, !dbg !29
  14. }
  15. ; Function Attrs: nounwind readnone
  16. declare void @llvm.dbg.value(metadata, metadata, metadata) #2
  17. attributes #0 = { uwtable }
  18. attributes #2 = { nounwind readnone }
  19. !llvm.dbg.cu = !{!0}
  20. !llvm.module.flags = !{!17, !18}
  21. !llvm.ident = !{!19}
  22. !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)
  23. !1 = !DIFile(filename: "const.cpp", directory: "/tmp/dbginfo")
  24. !2 = !{}
  25. !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)
  26. !5 = !DIFile(filename: "const.cpp", directory: "/tmp/dbginfo")
  27. !6 = !DISubroutineType(types: !7)
  28. !7 = !{!8}
  29. !8 = !DIBasicType(tag: DW_TAG_base_type, name: "int", size: 32, align: 32, encoding: DW_ATE_signed)
  30. !9 = !{!10, !12, !15}
  31. !10 = !DILocalVariable(name: "i", line: 5, scope: !4, file: !5, type: !11)
  32. !11 = !DIDerivedType(tag: DW_TAG_const_type, baseType: !8)
  33. !12 = !DILocalVariable(name: "j", line: 7, scope: !4, file: !5, type: !13)
  34. !13 = !DIDerivedType(tag: DW_TAG_const_type, baseType: !14)
  35. !14 = !DIBasicType(tag: DW_TAG_base_type, name: "unsigned int", size: 32, align: 32, encoding: DW_ATE_unsigned)
  36. !15 = !DILocalVariable(name: "c", line: 9, scope: !4, file: !5, type: !16)
  37. !16 = !DIBasicType(tag: DW_TAG_base_type, name: "char16_t", size: 16, align: 16, encoding: 16)
  38. !17 = !{i32 2, !"Dwarf Version", i32 4}
  39. !18 = !{i32 1, !"Debug Info Version", i32 3}
  40. !19 = !{!"clang version 3.5.0 "}
  41. !20 = !{i32 42}
  42. !21 = !DILocation(line: 5, scope: !4)
  43. !22 = !DILocation(line: 6, scope: !4)
  44. !23 = !{i32 117}
  45. !24 = !DILocation(line: 7, scope: !4)
  46. !25 = !DILocation(line: 8, scope: !4)
  47. !26 = !{i16 7}
  48. !27 = !DILocation(line: 9, scope: !4)
  49. !28 = !DILocation(line: 10, scope: !4)
  50. !29 = !DILocation(line: 11, scope: !4)