[InstCombine] Signed saturation patterns
[llvm-complete.git] / test / LTO / Resolution / X86 / export-jumptable.ll
blobec23d15591386c46e1deb54e1c91978dfa02b915
1 ; Test that we do not internalize functions that appear in the CFI jump table in
2 ; the full LTO object file; any such functions will be referenced by the jump
3 ; table.
5 ; RUN: opt -thinlto-bc -thinlto-split-lto-unit -o %t %s
6 ; RUN: llvm-lto2 run -o %t2 -r %t,f1,p -r %t,f2,p -r %t,_start,px %t -save-temps
7 ; RUN: llvm-dis %t2.1.2.internalize.bc -o - | FileCheck %s
9 target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
10 target triple = "x86_64-unknown-linux-gnu"
12 ; CHECK: define void @f1()
13 define void @f1() !type !0 {
14   ret void
17 ; CHECK: define internal void @f2()
18 define void @f2() !type !1 {
19   ret void
22 define i1 @_start(i1 %i) {
23   %1 = select i1 %i, void ()* @f1, void ()* @f2
24   %2 = bitcast void ()* %1 to i8*
25   %3 = call i1 @llvm.type.test(i8* %2, metadata !"typeid1")
26   ret i1 %3
29 declare i1 @llvm.type.test(i8*, metadata)
31 !0 = !{i64 0, !"typeid1"}
32 !1 = !{i64 0, !"typeid2"}