brintos

brintos / llvm-project-archived public Read only

0
0
Text · 887 B · e7a583f Raw
32 lines · plain
1; Test that we do not internalize functions that appear in the CFI jump table in2; the full LTO object file; any such functions will be referenced by the jump3; table.4 5; RUN: opt -thinlto-bc -thinlto-split-lto-unit -o %t %s6; RUN: llvm-lto2 run -o %t2 -r %t,f1,p -r %t,f2,p -r %t,_start,px %t -save-temps7; RUN: llvm-dis %t2.1.2.internalize.bc -o - | FileCheck %s8 9target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"10target triple = "x86_64-unknown-linux-gnu"11 12; CHECK: define void @f1()13define void @f1() !type !0 {14  ret void15}16 17; CHECK: define internal void @f2()18define void @f2() !type !1 {19  ret void20}21 22define i1 @_start(i1 %i) {23  %1 = select i1 %i, ptr @f1, ptr @f224  %2 = call i1 @llvm.type.test(ptr %1, metadata !"typeid1")25  ret i1 %226}27 28declare i1 @llvm.type.test(ptr, metadata)29 30!0 = !{i64 0, !"typeid1"}31!1 = !{i64 0, !"typeid2"}32