1; RUN: opt < %s -argpromotion -S | FileCheck %s 2; CHECK: call void @test(i32 % 3; CHECK: !MDSubprogram(name: "test",{{.*}} function: void (i32)* @test 4 5declare void @sink(i32) 6 7define internal void @test(i32** %X) { 8 %1 = load i32*, i32** %X, align 8 9 %2 = load i32, i32* %1, align 8 10 call void @sink(i32 %2) 11 ret void 12} 13 14define void @caller(i32** %Y) { 15 call void @test(i32** %Y) 16 ret void 17} 18 19!llvm.module.flags = !{!0} 20!llvm.dbg.cu = !{!3} 21 22!0 = !{i32 2, !"Debug Info Version", i32 3} 23!1 = !MDLocation(line: 8, scope: !2) 24!2 = !MDSubprogram(name: "test", line: 3, isLocal: true, isDefinition: true, virtualIndex: 6, flags: DIFlagPrototyped, isOptimized: false, scopeLine: 3, scope: null, function: void (i32**)* @test) 25!3 = !MDCompileUnit(language: DW_LANG_C_plus_plus, producer: "clang version 3.5.0 ", isOptimized: false, emissionKind: 2, file: !5, subprograms: !4) 26!4 = !{!2} 27!5 = !MDFile(filename: "test.c", directory: "") 28