aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/visibility.ll
blob: 9153de46188c849bbc7689150a4dcd9f2e1701c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
; RUN: llc  %s -o - | FileCheck %s

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

declare hidden void @bar()

;CHECK: .hidden	bar