brintos

brintos / llvm-project-archived public Read only

0
0
Text · 616 B · b06971d Raw
24 lines · plain
1; REQUIRES: x862; RUN: llvm-as %s -o %t1.o3; RUN: llvm-as %p/Inputs/available-externally.ll -o %t2.o4; RUN: ld.lld %t1.o %t2.o -o %t.so -shared -save-temps5; RUN: llvm-dis < %t.so.0.2.internalize.bc | FileCheck %s6 7target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"8target triple = "x86_64-unknown-linux-gnu"9 10define void @foo() {11  call void @bar()12  call void @zed()13  ret void14}15define available_externally void @bar() {16  ret void17}18define available_externally void @zed() {19  ret void20}21 22; CHECK: define available_externally void @bar() {23; CHECK: define void @zed() {24