blob: 3850f5f12d06269db3524f737aa99fa6f6acfc4d [file] [log] [blame]
Eric Christopherc4964352012-05-23 00:09:20 +00001; RUN: llc -O0 -mtriple=x86_64-apple-darwin %s -o %t -filetype=obj
Adrian Prantl16aa4cf2017-09-11 23:05:20 +00002; RUN: llvm-dwarfdump -v -debug-info %t | FileCheck %s
Eric Christopherc4964352012-05-23 00:09:20 +00003
Adrian Prantl1eadba12016-12-22 00:45:21 +00004source_filename = "test/DebugInfo/X86/enum-class.ll"
Eric Christopherc4964352012-05-23 00:09:20 +00005
Adrian Prantl1eadba12016-12-22 00:45:21 +00006@a = global i32 0, align 4, !dbg !0
7@b = global i64 0, align 8, !dbg !7
8@c = global i32 0, align 4, !dbg !13
Eric Christopherc4964352012-05-23 00:09:20 +00009
Adrian Prantl1eadba12016-12-22 00:45:21 +000010!llvm.dbg.cu = !{!18}
11!llvm.module.flags = !{!22}
12
Adrian Prantl05782212017-08-30 18:06:51 +000013!0 = !DIGlobalVariableExpression(var: !1, expr: !DIExpression())
Adrian Prantl1eadba12016-12-22 00:45:21 +000014!1 = !DIGlobalVariable(name: "a", scope: null, file: !2, line: 4, type: !3, isLocal: false, isDefinition: true)
15!2 = !DIFile(filename: "foo.cpp", directory: "/Users/echristo/tmp")
16!3 = !DICompositeType(tag: DW_TAG_enumeration_type, name: "A", file: !2, line: 1, baseType: !4, size: 32, align: 32, elements: !5)
17!4 = !DIBasicType(name: "int", size: 32, align: 32, encoding: DW_ATE_signed)
18!5 = !{!6}
19!6 = !DIEnumerator(name: "A1", value: 1)
Adrian Prantl05782212017-08-30 18:06:51 +000020!7 = !DIGlobalVariableExpression(var: !8, expr: !DIExpression()) ; [ DW_TAG_enumerator ]
Adrian Prantl1eadba12016-12-22 00:45:21 +000021!8 = !DIGlobalVariable(name: "b", scope: null, file: !2, line: 5, type: !9, isLocal: false, isDefinition: true)
22!9 = !DICompositeType(tag: DW_TAG_enumeration_type, name: "B", file: !2, line: 2, baseType: !10, size: 64, align: 64, elements: !11)
23!10 = !DIBasicType(name: "long unsigned int", size: 64, align: 64, encoding: DW_ATE_unsigned)
24!11 = !{!12}
25!12 = !DIEnumerator(name: "B1", value: 1) ; [ DW_TAG_enumerator ]
Adrian Prantl05782212017-08-30 18:06:51 +000026!13 = !DIGlobalVariableExpression(var: !14, expr: !DIExpression())
Adrian Prantl1eadba12016-12-22 00:45:21 +000027!14 = !DIGlobalVariable(name: "c", scope: null, file: !2, line: 6, type: !15, isLocal: false, isDefinition: true)
28!15 = !DICompositeType(tag: DW_TAG_enumeration_type, name: "C", file: !2, line: 3, size: 32, align: 32, elements: !16)
29!16 = !{!17}
30!17 = !DIEnumerator(name: "C1", value: 1) ; [ DW_TAG_enumerator ]
31!18 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, file: !2, producer: "clang version 3.2 (trunk 157269) (llvm/trunk 157264)", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug, enums: !19, retainedTypes: !20, globals: !21, imports: !20)
32!19 = !{!3, !9, !15}
33!20 = !{}
34!21 = !{!0, !7, !13}
35!22 = !{i32 1, !"Debug Info Version", i32 3}
Eric Christopherc4964352012-05-23 00:09:20 +000036
Manman Renf6b936b2013-10-29 05:49:41 +000037; CHECK: DW_TAG_enumeration_type [{{.*}}]
Eric Christophere31e0722013-09-04 22:21:24 +000038; CHECK: DW_AT_type [DW_FORM_ref4]
Eric Christopher6b8209b2013-10-04 22:40:10 +000039; CHECK: DW_AT_enum_class [DW_FORM_flag_present] (true)
Eric Christopherc4964352012-05-23 00:09:20 +000040; CHECK: DW_AT_name [DW_FORM_strp] ( .debug_str[{{.*}}] = "A")
41
Manman Renf6b936b2013-10-29 05:49:41 +000042; CHECK: DW_TAG_enumeration_type [{{.*}}] *
Eric Christophere31e0722013-09-04 22:21:24 +000043; CHECK: DW_AT_type [DW_FORM_ref4]
Eric Christopher6b8209b2013-10-04 22:40:10 +000044; CHECK: DW_AT_enum_class [DW_FORM_flag_present] (true)
Eric Christopherc4964352012-05-23 00:09:20 +000045; CHECK: DW_AT_name [DW_FORM_strp] ( .debug_str[{{.*}}] = "B")
46
47; CHECK: DW_TAG_enumeration_type [6]
48; CHECK-NOT: DW_AT_enum_class
49; CHECK: DW_AT_name [DW_FORM_strp] ( .debug_str[{{.*}}] = "C")