xref: /llvm-project/llvm/test/DebugInfo/Generic/address_space_rvalue.ll (revision 5336b1ed755627892129454a9d9351463503bb82)
1; XFAIL: target={{.*}}-aix{{.*}}
2; RUN: %llc_dwarf -O0 -filetype=obj < %s | llvm-dwarfdump -debug-info - | FileCheck %s
3
4; This nonsensical example tests that address spaces for rvalue
5; references are produced.
6
7; CHECK: DW_TAG_rvalue_reference_type
8; CHECK-NOT: DW_TAG
9; CHECK: DW_AT_address_class	(0x00000001)
10
11@y = global ptr null, align 8, !dbg !0
12
13!llvm.dbg.cu = !{!5}
14!llvm.module.flags = !{!8, !9}
15
16!0 = !DIGlobalVariableExpression(var: !1, expr: !DIExpression())
17!1 = !DIGlobalVariable(name: "x", scope: null, file: !2, line: 2, type: !3, isLocal: false, isDefinition: true)
18!2 = !DIFile(filename: "test.cpp", directory: "/")
19!3 = !DIDerivedType(tag: DW_TAG_rvalue_reference_type, baseType: !4, size: 64, align: 64, dwarfAddressSpace: 1)
20!4 = !DIBasicType(name: "long long unsigned int", size: 64, encoding: DW_ATE_unsigned)
21!5 = distinct !DICompileUnit(language: DW_LANG_C_plus_plus, file: !2, producer: "clang version 3.5.0 ", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug, enums: !6, retainedTypes: !6, globals: !7, imports: !6)
22!6 = !{}
23!7 = !{!0}
24!8 = !{i32 2, !"Dwarf Version", i32 5}
25!9 = !{i32 1, !"Debug Info Version", i32 3}
26