1*9880d681SAndroid Build Coastguard Worker; RUN: not llvm-as %s -o %t 2>&1 | FileCheck %s 2*9880d681SAndroid Build Coastguard Worker; Created and then edited from 3*9880d681SAndroid Build Coastguard Worker; extern void i(); 4*9880d681SAndroid Build Coastguard Worker; void h() { i(); } 5*9880d681SAndroid Build Coastguard Worker; void g() { h(); } 6*9880d681SAndroid Build Coastguard Worker; void f() { g(); } 7*9880d681SAndroid Build Coastguard Worker; 8*9880d681SAndroid Build Coastguard Worker; Compiling this with inlining runs into the 9*9880d681SAndroid Build Coastguard Worker; "!dbg attachment points at wrong subprogram for function" 10*9880d681SAndroid Build Coastguard Worker; assertion. 11*9880d681SAndroid Build Coastguard Worker 12*9880d681SAndroid Build Coastguard Workertarget datalayout = "e-m:o-i64:64-f80:128-n8:16:32:64-S128" 13*9880d681SAndroid Build Coastguard Workertarget triple = "x86_64-apple-macosx" 14*9880d681SAndroid Build Coastguard Worker 15*9880d681SAndroid Build Coastguard Worker; Function Attrs: nounwind ssp uwtable 16*9880d681SAndroid Build Coastguard Workerdefine void @h() #0 !dbg !7 { 17*9880d681SAndroid Build Coastguard Workerentry: 18*9880d681SAndroid Build Coastguard Worker call void (...) @i(), !dbg !9 19*9880d681SAndroid Build Coastguard Worker ret void, !dbg !10 20*9880d681SAndroid Build Coastguard Worker} 21*9880d681SAndroid Build Coastguard Worker 22*9880d681SAndroid Build Coastguard Workerdeclare void @i(...) #1 23*9880d681SAndroid Build Coastguard Worker 24*9880d681SAndroid Build Coastguard Worker; Function Attrs: nounwind ssp uwtable 25*9880d681SAndroid Build Coastguard Workerdefine void @g() #0 !dbg !11 { 26*9880d681SAndroid Build Coastguard Workerentry: 27*9880d681SAndroid Build Coastguard Worker; Manually removed !dbg. 28*9880d681SAndroid Build Coastguard Worker; CHECK: inlinable function call in a function with debug info must have a !dbg location 29*9880d681SAndroid Build Coastguard Worker call void @h() 30*9880d681SAndroid Build Coastguard Worker ret void, !dbg !13 31*9880d681SAndroid Build Coastguard Worker} 32*9880d681SAndroid Build Coastguard Worker 33*9880d681SAndroid Build Coastguard Worker; Function Attrs: nounwind ssp uwtable 34*9880d681SAndroid Build Coastguard Workerdefine void @f() #0 !dbg !14 { 35*9880d681SAndroid Build Coastguard Workerentry: 36*9880d681SAndroid Build Coastguard Worker call void @g(), !dbg !15 37*9880d681SAndroid Build Coastguard Worker ret void, !dbg !16 38*9880d681SAndroid Build Coastguard Worker} 39*9880d681SAndroid Build Coastguard Worker 40*9880d681SAndroid Build Coastguard Workerattributes #0 = { nounwind ssp uwtable } 41*9880d681SAndroid Build Coastguard Worker 42*9880d681SAndroid Build Coastguard Worker!llvm.dbg.cu = !{!0} 43*9880d681SAndroid Build Coastguard Worker!llvm.module.flags = !{!3, !4, !5} 44*9880d681SAndroid Build Coastguard Worker!llvm.ident = !{!6} 45*9880d681SAndroid Build Coastguard Worker 46*9880d681SAndroid Build Coastguard Worker!0 = distinct !DICompileUnit(language: DW_LANG_C99, file: !1, producer: "clang version 3.9.0 (trunk 267186)", isOptimized: false, runtimeVersion: 0, emissionKind: LineTablesOnly, enums: !2) 47*9880d681SAndroid Build Coastguard Worker!1 = !DIFile(filename: "test.c", directory: "/Volumes/Data/llvm") 48*9880d681SAndroid Build Coastguard Worker!2 = !{} 49*9880d681SAndroid Build Coastguard Worker!3 = !{i32 2, !"Dwarf Version", i32 2} 50*9880d681SAndroid Build Coastguard Worker!4 = !{i32 2, !"Debug Info Version", i32 3} 51*9880d681SAndroid Build Coastguard Worker!5 = !{i32 1, !"PIC Level", i32 2} 52*9880d681SAndroid Build Coastguard Worker!6 = !{!"clang version 3.9.0 (trunk 267186)"} 53*9880d681SAndroid Build Coastguard Worker!7 = distinct !DISubprogram(name: "h", scope: !1, file: !1, line: 2, type: !8, isLocal: false, isDefinition: true, scopeLine: 2, isOptimized: false, unit: !0, variables: !2) 54*9880d681SAndroid Build Coastguard Worker!8 = !DISubroutineType(types: !2) 55*9880d681SAndroid Build Coastguard Worker!9 = !DILocation(line: 2, column: 12, scope: !7) 56*9880d681SAndroid Build Coastguard Worker!10 = !DILocation(line: 2, column: 17, scope: !7) 57*9880d681SAndroid Build Coastguard Worker!11 = distinct !DISubprogram(name: "g", scope: !1, file: !1, line: 3, type: !8, isLocal: false, isDefinition: true, scopeLine: 3, isOptimized: false, unit: !0, variables: !2) 58*9880d681SAndroid Build Coastguard Worker!12 = !DILocation(line: 3, column: 12, scope: !11) 59*9880d681SAndroid Build Coastguard Worker!13 = !DILocation(line: 3, column: 17, scope: !11) 60*9880d681SAndroid Build Coastguard Worker!14 = distinct !DISubprogram(name: "f", scope: !1, file: !1, line: 4, type: !8, isLocal: false, isDefinition: true, scopeLine: 4, isOptimized: false, unit: !0, variables: !2) 61*9880d681SAndroid Build Coastguard Worker!15 = !DILocation(line: 4, column: 12, scope: !14) 62*9880d681SAndroid Build Coastguard Worker!16 = !DILocation(line: 4, column: 17, scope: !14) 63