[ARM] More MVE compare vector splat combines for ANDs
[llvm-complete.git] / test / CodeGen / AArch64 / dbg-declare-tag-offset.ll
blob626db0589a39bf33208749d4ce26fb036e4fb225
1 ; RUN: llc -o - %s | FileCheck %s
3 target triple="aarch64--"
5 ; CHECK: .Linfo_string4:
6 ; CHECK-NEXT: .asciz "a"
7 ; CHECK: .Linfo_string6:
8 ; CHECK-NEXT: .asciz "b"
10 ; CHECK: .byte 1 // DW_AT_LLVM_tag_offset
11 ; CHECK: .word .Linfo_string4 // DW_AT_name
13 ; CHECK: .byte 2 // DW_AT_LLVM_tag_offset
14 ; CHECK: .word .Linfo_string6 // DW_AT_name
16 define void @f() !dbg !6 {
17 entry:
18   %a = alloca i8*
19   %b = alloca i8*
20   call void @llvm.dbg.declare(metadata i8** %a, metadata !12, metadata !DIExpression(DW_OP_LLVM_tag_offset, 1)), !dbg !14
21   call void @llvm.dbg.declare(metadata i8** %b, metadata !13, metadata !DIExpression(DW_OP_LLVM_tag_offset, 2)), !dbg !14
22   ret void, !dbg !15
25 declare void @llvm.dbg.declare(metadata, metadata, metadata)
27 !llvm.dbg.cu = !{!0}
28 !llvm.module.flags = !{!3, !4}
29 !llvm.ident = !{!5}
31 !0 = distinct !DICompileUnit(language: DW_LANG_C99, file: !1, producer: "clang", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug, enums: !2)
32 !1 = !DIFile(filename: "x.c", directory: "/")
33 !2 = !{}
34 !3 = !{i32 2, !"Dwarf Version", i32 4}
35 !4 = !{i32 2, !"Debug Info Version", i32 3}
36 !5 = !{!"clang"}
37 !6 = distinct !DISubprogram(name: "f", scope: !1, file: !1, line: 1, type: !7, isLocal: false, isDefinition: true, scopeLine: 1, flags:
38 DIFlagPrototyped, isOptimized: false, unit: !0, retainedNodes: !2)
39 !7 = !DISubroutineType(types: !8)
40 !8 = !{null, !9}
41 !9 = !DIDerivedType(tag: DW_TAG_pointer_type, baseType: !10, size: 64)
42 !10 = !DIDerivedType(tag: DW_TAG_const_type, baseType: !11)
43 !11 = !DIBasicType(name: "char", size: 8, encoding: DW_ATE_signed_char)
44 !12 = !DILocalVariable(name: "a", scope: !6, file: !1, line: 1, type: !9)
45 !13 = !DILocalVariable(name: "b", scope: !6, file: !1, line: 1, type: !9)
46 !14 = !DILocation(line: 1, column: 29, scope: !6)
47 !15 = !DILocation(line: 1, column: 37, scope: !6)