aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/X86/visibility.ll
blob: a8d287083a80fcd20cfed61de8fd371fce84cb68 (plain)
1
2
3
4
5
6
7
8
9
10
11
; RUN: llc -mtriple=x86_64-unknown-linux-gnu %s -o - | FileCheck %s

define hidden void @foo() nounwind {
entry:
  call void @bar()
  ret void
}

declare hidden void @bar()

;CHECK: .hidden	bar