llvm-project/llvm/test/CodeGen/X86/visibility.ll

12 lines
161 B
LLVM
Raw Normal View History

; RUN: llc %s -o - | FileCheck %s
define hidden void @foo() nounwind {
entry:
call void @bar()
ret void
}
declare hidden void @bar()
;CHECK: .hidden bar