1; RUN: opt -module-summary %s -o %t1.bc 2; RUN: opt -module-summary %S/Inputs/dsolocal_dllimport.ll -o %t2.bc 3; RUN: llvm-lto2 run %t1.bc %t2.bc -o %t -r=%t1.bc,bar,px -r=%t1.bc,__imp_foo, -r=%t2.bc,foo -save-temps 4; RUN: llvm-dis < %t.1.3.import.bc | FileCheck %s 5 6; If a user (dllimport) is LTOed with a library, check that we replace dllimport with dso_local. 7 8; CHECK: declare dso_local void @foo() 9 10target datalayout = "e-m:w-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128" 11target triple = "x86_64-pc-windows-msvc19.11.0" 12define void @bar() { 13 call void @foo() 14 ret void 15} 16declare dllimport void @foo() 17