blob: 6268d60cd9bbbe1f37561d491b53aa42ebd5d40a [file] [log] [blame]
; RUN: llvm-as %s -o %t.o
; RUN: llvm-as %p/Inputs/available-externally.ll -o %t2.o
; RUN: %gold -plugin %llvmshlibdir/LLVMgold%shlibext \
; RUN: --plugin-opt=emit-llvm \
; RUN: -shared %t.o %t2.o -o %t3.o
; RUN: llvm-dis %t3.o -o - | FileCheck %s
; RUN: %gold -plugin %llvmshlibdir/LLVMgold%shlibext \
; RUN: --plugin-opt=emit-llvm \
; RUN: -shared %t2.o %t.o -o %t3.o
; RUN: llvm-dis %t3.o -o - | FileCheck %s
target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
define void @foo() {
call void @bar()
call void @zed()
ret void
}
define available_externally void @bar() {
ret void
}
define available_externally void @zed() {
ret void
}
; CHECK-DAG: define available_externally void @bar() {
; CHECK-DAG: define void @zed() {