blob: 003935a60a20f480a38a3a36deac1f3a440cade1 [file] [log] [blame]
Adrian Prantl16aa4cf2017-09-11 23:05:20 +00001; RUN: llc -filetype=obj < %s | llvm-dwarfdump -v -debug-info - | FileCheck %s
Adrian Prantl577feba2015-01-23 18:01:39 +00002; CHECK: DW_TAG_variable
3; CHECK-NEXT: DW_AT_const_value [DW_FORM_udata] (0)
4; CHECK-NEXT: DW_AT_name {{.*}}"a"
5;
6; ModuleID = 'union.c'
7; generated at -O1 from:
8; union mfi_evt {
9; struct {
10; int reserved;
11; } members;
12; } mfi_aen_setup() {
13; union mfi_evt a;
14; a.members.reserved = 0;
15; }
16target datalayout = "e-m:o-i64:64-f80:128-n8:16:32:64-S128"
17target triple = "x86_64-apple-macosx10.10.0"
18
19%union.mfi_evt = type { %struct.anon }
20%struct.anon = type { i32 }
21
22; Function Attrs: nounwind readnone ssp uwtable
Peter Collingbourned4bff302015-11-05 22:03:56 +000023define i32 @mfi_aen_setup() #0 !dbg !4 {
Adrian Prantl577feba2015-01-23 18:01:39 +000024entry:
25 tail call void @llvm.dbg.declare(metadata %union.mfi_evt* undef, metadata !16, metadata !21), !dbg !22
Adrian Prantlabe04752017-07-28 20:21:02 +000026 tail call void @llvm.dbg.value(metadata i32 0, metadata !16, metadata !21), !dbg !22
Adrian Prantl577feba2015-01-23 18:01:39 +000027 ret i32 undef, !dbg !23
28}
29
30; Function Attrs: nounwind readnone
31declare void @llvm.dbg.declare(metadata, metadata, metadata) #1
32
33; Function Attrs: nounwind readnone
Adrian Prantlabe04752017-07-28 20:21:02 +000034declare void @llvm.dbg.value(metadata, metadata, metadata) #1
Adrian Prantl577feba2015-01-23 18:01:39 +000035
36attributes #0 = { nounwind readnone ssp uwtable }
37attributes #1 = { nounwind readnone }
38
39!llvm.dbg.cu = !{!0}
40!llvm.module.flags = !{!17, !18, !19}
41!llvm.ident = !{!20}
42
Adrian Prantl75819ae2016-04-15 15:57:41 +000043!0 = distinct !DICompileUnit(language: DW_LANG_C99, producer: "clang version 3.7.0 (trunk 226915) (llvm/trunk 226905)", isOptimized: true, emissionKind: FullDebug, file: !1, enums: !2, retainedTypes: !2, globals: !2, imports: !2)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +000044!1 = !DIFile(filename: "union.c", directory: "")
Adrian Prantl577feba2015-01-23 18:01:39 +000045!2 = !{}
Adrian Prantl75819ae2016-04-15 15:57:41 +000046!4 = distinct !DISubprogram(name: "mfi_aen_setup", line: 5, isLocal: false, isDefinition: true, isOptimized: true, unit: !0, scopeLine: 5, file: !1, scope: !5, type: !6, variables: !15)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +000047!5 = !DIFile(filename: "union.c", directory: "")
48!6 = !DISubroutineType(types: !7)
Adrian Prantl577feba2015-01-23 18:01:39 +000049!7 = !{!8}
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +000050!8 = !DICompositeType(tag: DW_TAG_union_type, name: "mfi_evt", line: 1, size: 32, align: 32, file: !1, elements: !9)
Adrian Prantl577feba2015-01-23 18:01:39 +000051!9 = !{!10}
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +000052!10 = !DIDerivedType(tag: DW_TAG_member, name: "members", line: 4, size: 32, align: 32, file: !1, scope: !8, baseType: !11)
53!11 = !DICompositeType(tag: DW_TAG_structure_type, line: 2, size: 32, align: 32, file: !1, scope: !8, elements: !12)
Adrian Prantl577feba2015-01-23 18:01:39 +000054!12 = !{!13}
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +000055!13 = !DIDerivedType(tag: DW_TAG_member, name: "reserved", line: 3, size: 32, align: 32, file: !1, scope: !11, baseType: !14)
56!14 = !DIBasicType(tag: DW_TAG_base_type, name: "int", size: 32, align: 32, encoding: DW_ATE_signed)
Adrian Prantl577feba2015-01-23 18:01:39 +000057!15 = !{!16}
Duncan P. N. Exon Smithed013cd2015-07-31 18:58:39 +000058!16 = !DILocalVariable(name: "a", line: 6, scope: !4, file: !5, type: !8)
Adrian Prantl577feba2015-01-23 18:01:39 +000059!17 = !{i32 2, !"Dwarf Version", i32 2}
Duncan P. N. Exon Smithe2741802015-03-03 17:24:31 +000060!18 = !{i32 2, !"Debug Info Version", i32 3}
Adrian Prantl577feba2015-01-23 18:01:39 +000061!19 = !{i32 1, !"PIC Level", i32 2}
62!20 = !{!"clang version 3.7.0 (trunk 226915) (llvm/trunk 226905)"}
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +000063!21 = !DIExpression()
64!22 = !DILocation(line: 6, column: 17, scope: !4)
65!23 = !DILocation(line: 8, column: 1, scope: !4)