1; RUN: %llc_dwarf -O0 -filetype=obj -o %t.o %s 2; RUN: llvm-dwarfdump -v -debug-info %t.o | FileCheck %s 3; REQUIRES: object-emission 4target datalayout = "e-m:o-p:32:32-i64:64-v128:64:128-a:0:32-n32-S64" 5target triple = "thumbv7-apple-unknown-macho" 6 7; generated from (-triple thumbv7-apple-unknown-macho -Os): 8; void f(_Complex double c) { c = 0; } 9 10; Function Attrs: nounwind readnone 11define arm_aapcscc void @f([2 x i64] %c.coerce) #0 !dbg !4 { 12entry: 13 tail call void @llvm.dbg.declare(metadata { double, double }* undef, metadata !14, metadata !15), !dbg !16 14 ; The target has no native double type. 15 ; SROA split the complex value into two i64 values. 16 ; CHECK: DW_TAG_formal_parameter 17 ; CHECK-NEXT: DW_AT_location [DW_FORM_block1] (DW_OP_constu 0x0, DW_OP_piece 0x8) 18 ; CHECK-NEXT: DW_AT_name {{.*}} "c" 19 tail call void @llvm.dbg.value(metadata i64 0, metadata !14, metadata !17), !dbg !16 20 ; Manually removed to disable location list emission: 21 ; tail call void @llvm.dbg.value(metadata i64 0, metadata !14, metadata !18), !dbg !16 22 ret void, !dbg !19 23} 24 25; Function Attrs: nounwind readnone 26declare void @llvm.dbg.declare(metadata, metadata, metadata) #0 27 28; Function Attrs: nounwind readnone 29declare void @llvm.dbg.value(metadata, metadata, metadata) #0 30 31attributes #0 = { nounwind readnone } 32 33!llvm.dbg.cu = !{!0} 34!llvm.module.flags = !{!9, !10, !11, !12} 35!llvm.ident = !{!13} 36 37!0 = distinct !DICompileUnit(language: DW_LANG_C99, file: !1, producer: "clang version 3.9.0 (trunk 259998) (llvm/trunk 259999)", isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug, enums: !2) 38!1 = !DIFile(filename: "<stdin>", directory: "/") 39!2 = !{} 40!4 = distinct !DISubprogram(name: "f", scope: !5, file: !5, line: 1, type: !6, isLocal: false, isDefinition: true, scopeLine: 1, flags: DIFlagPrototyped, isOptimized: false, unit: !0, retainedNodes: !2) 41!5 = !DIFile(filename: "test.c", directory: "/") 42!6 = !DISubroutineType(types: !7) 43!7 = !{null, !8} 44!8 = !DIBasicType(name: "complex", size: 128, align: 64, encoding: DW_ATE_complex_float) 45!9 = !{i32 2, !"Dwarf Version", i32 2} 46!10 = !{i32 2, !"Debug Info Version", i32 3} 47!11 = !{i32 1, !"wchar_size", i32 4} 48!12 = !{i32 1, !"min_enum_size", i32 4} 49!13 = !{!"clang version 3.9.0 (trunk 259998) (llvm/trunk 259999)"} 50!14 = !DILocalVariable(name: "c", arg: 1, scope: !4, file: !5, line: 1, type: !8) 51!15 = !DIExpression() 52!16 = !DILocation(line: 1, column: 24, scope: !4) 53!17 = !DIExpression(DW_OP_LLVM_fragment, 0, 64) 54!18 = !DIExpression(DW_OP_LLVM_fragment, 64, 64) 55!19 = !DILocation(line: 1, column: 36, scope: !4) 56