[InstCombine] Signed saturation patterns
[llvm-complete.git] / test / LTO / Resolution / X86 / local-def-dllimport.ll
blob4c70e72803e69968c0f44a339b53020118960db0
1 ; RUN: opt -thinlto-bc -thinlto-split-lto-unit -o %t0.bc %s
2 ; RUN: llvm-lto2 run -r %t0.bc,__imp_f,l \
3 ; RUN:               -r %t0.bc,g,p \
4 ; RUN:               -r %t0.bc,g,l \
5 ; RUN:               -r %t0.bc,e,l \
6 ; RUN:               -r %t0.bc,main,x \
7 ; RUN:               -save-temps -o %t1 %t0.bc
8 ; RUN: llvm-dis %t1.1.3.import.bc -o - | FileCheck %s
9 source_filename = "test.cpp"
10 target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
11 target triple = "x86_64-unknown-linux-gnu"
13 $g = comdat any
14 @g = global i8 42, comdat, !type !0
16 ; CHECK: define
17 ; CHECK-NOT: dllimport
18 ; CHECK-SAME: @f
19 define available_externally dllimport i8* @f() {
20   ret i8* @g
23 define i8* @e() {
24   ret i8* @g
27 define i32 @main() {
28   %1 = call i8* @f()
29   %2 = ptrtoint i8* %1 to i32
30   ret i32 %2
32 !0 = !{i32 0, !"typeid"}