Make test more lenient for custom clang version strings
[llvm-project.git] / llvm / test / LTO / Resolution / X86 / export-jumptable.ll
blobe7a583f5d80ea2490292e83090267a98a1828ad7
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, ptr @f1, ptr @f2
24   %2 = call i1 @llvm.type.test(ptr %1, metadata !"typeid1")
25   ret i1 %2
28 declare i1 @llvm.type.test(ptr, metadata)
30 !0 = !{i64 0, !"typeid1"}
31 !1 = !{i64 0, !"typeid2"}