blob: b7ec9104ba08b02dc6c3a04fdebd568503313a3b [file] [log] [blame]
Manman Rene8064c92013-07-24 18:56:43 +00001; RUN: llc -O0 %s -mtriple=x86_64-apple-darwin -filetype=obj -o %t
Manman Rene697d3c2013-02-01 23:54:37 +00002; RUN: llvm-dwarfdump %t | FileCheck %s
3
4; rdar://13071590
5; Check we are not emitting mutliple AT_const_value for a single member.
6; CHECK: .debug_info contents:
7; CHECK: DW_TAG_compile_unit
8; CHECK: DW_TAG_class_type
9; CHECK: DW_TAG_member
10; CHECK: badbit
Eric Christopher9d1daa82013-08-27 23:49:04 +000011; CHECK: DW_AT_const_value [DW_FORM_sdata] (1)
Manman Rene697d3c2013-02-01 23:54:37 +000012; CHECK-NOT: DW_AT_const_value
13; CHECK: NULL
14
15%"class.std::basic_ostream" = type { i32 (...)**, %"class.std::basic_os" }
16%"class.std::basic_os" = type { %"class.std::os_base", %"class.std::basic_ostream"*, i8, i8 }
17%"class.std::os_base" = type { i32 (...)**, i64, i64, i32, i32, i32 }
18
19@_ZSt4cout = external global %"class.std::basic_ostream"
20@.str = private unnamed_addr constant [6 x i8] c"c is \00", align 1
21
Manman Ren053e4ff2013-02-02 01:34:38 +000022define i32 @main() {
Manman Rene697d3c2013-02-01 23:54:37 +000023entry:
David Blaikief72d05b2015-03-13 18:20:45 +000024 %call1.i = tail call %"class.std::basic_ostream"* @test(%"class.std::basic_ostream"* @_ZSt4cout, i8* getelementptr inbounds ([6 x i8], [6 x i8]* @.str, i64 0, i64 0), i64 5)
Manman Rene697d3c2013-02-01 23:54:37 +000025 ret i32 0
26}
27
28declare %"class.std::basic_ostream"* @test(%"class.std::basic_ostream"*, i8*, i64)
29
Adrian Prantl87b7eb92014-10-01 18:55:02 +000030declare void @llvm.dbg.value(metadata, i64, metadata, metadata) nounwind readnone
Manman Rene697d3c2013-02-01 23:54:37 +000031
32!llvm.dbg.cu = !{!0}
Manman Ren409558f2013-11-22 21:49:45 +000033!llvm.module.flags = !{!1803}
Manman Rene697d3c2013-02-01 23:54:37 +000034
Duncan P. N. Exon Smithe2741802015-03-03 17:24:31 +000035!0 = !MDCompileUnit(language: DW_LANG_C_plus_plus, producer: "clang version 3.3 (trunk 174207)", isOptimized: true, emissionKind: 0, file: !1802, enums: !1, retainedTypes: !955, subprograms: !956, globals: !1786, imports: !955)
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +000036!1 = !{!26}
Duncan P. N. Exon Smithe2741802015-03-03 17:24:31 +000037!4 = !MDNamespace(name: "std", line: 48, scope: !5)
38!5 = !MDFile(filename: "os_base.h", directory: "/privite/tmp")
39!25 = !MDEnumerator(name: "_S_os_fmtflags_end", value: 65536) ; [ DW_TAG_enumerator ]
40!26 = !MDCompositeType(tag: DW_TAG_enumeration_type, name: "_Ios_Iostate", line: 146, size: 32, align: 32, file: !1801, scope: !4, elements: !27)
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +000041!27 = !{!28, !29, !30, !31, !32}
Duncan P. N. Exon Smithe2741802015-03-03 17:24:31 +000042!28 = !MDEnumerator(name: "_S_goodbit", value: 0) ; [ DW_TAG_enumerator ] [_S_goodbit :: 0]
43!29 = !MDEnumerator(name: "_S_badbit", value: 1) ; [ DW_TAG_enumerator ] [_S_badbit :: 1]
44!30 = !MDEnumerator(name: "_S_eofbit", value: 2) ; [ DW_TAG_enumerator ] [_S_eofbit :: 2]
45!31 = !MDEnumerator(name: "_S_failbit", value: 4) ; [ DW_TAG_enumerator ] [_S_failbit :: 4]
46!32 = !MDEnumerator(name: "_S_os_ostate_end", value: 65536) ; [ DW_TAG_enumerator ] [_S_os_ostate_end :: 65536]
47!49 = !MDCompositeType(tag: DW_TAG_class_type, name: "os_base", line: 200, size: 1728, align: 64, file: !1801, scope: !4, elements: !50, vtableHolder: !49)
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +000048!50 = !{!77}
Duncan P. N. Exon Smithe2741802015-03-03 17:24:31 +000049!54 = !MDSubroutineType(types: !55)
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +000050!55 = !{!56}
Duncan P. N. Exon Smithe2741802015-03-03 17:24:31 +000051!56 = !MDBasicType(tag: DW_TAG_base_type, name: "int", size: 32, align: 32, encoding: DW_ATE_signed)
52!77 = !MDDerivedType(tag: DW_TAG_member, name: "badbit", line: 331, flags: DIFlagStaticMember, file: !1801, scope: !49, baseType: !78, extraData: i32 1)
53!78 = !MDDerivedType(tag: DW_TAG_const_type, baseType: !79)
54!79 = !MDDerivedType(tag: DW_TAG_typedef, name: "ostate", line: 327, file: !1801, scope: !49, baseType: !26)
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +000055!955 = !{}
56!956 = !{!960}
Duncan P. N. Exon Smithe2741802015-03-03 17:24:31 +000057!960 = !MDSubprogram(name: "main", line: 73, isLocal: false, isDefinition: true, virtualIndex: 6, flags: DIFlagPrototyped, isOptimized: true, scopeLine: 73, file: !1802, scope: null, type: !54, function: i32 ()* @main, variables: !955)
58!961 = !MDFile(filename: "student2.cpp", directory: "/privite/tmp")
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +000059!1786 = !{!1800}
Duncan P. N. Exon Smithe2741802015-03-03 17:24:31 +000060!1800 = !MDGlobalVariable(name: "badbit", linkageName: "badbit", line: 331, isLocal: true, isDefinition: true, scope: !5, file: !5, type: !78, variable: i32 1, declaration: !77)
61!1801 = !MDFile(filename: "os_base.h", directory: "/privite/tmp")
62!1802 = !MDFile(filename: "student2.cpp", directory: "/privite/tmp")
63!1803 = !{i32 1, !"Debug Info Version", i32 3}