Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / ThinLTO / X86 / dsolocal_dllimport.ll
blob2c3815a15071fc68b7b195a539639e9d39d35320
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
6 ; If a user (dllimport) is LTOed with a library, check that we replace dllimport with dso_local.
8 ; CHECK: declare dso_local void @foo()
10 target datalayout = "e-m:w-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
11 target triple = "x86_64-pc-windows-msvc19.11.0"
12 define void @bar() {
13   call void @foo()
14   ret void
16 declare dllimport void @foo()