summaryrefslogtreecommitdiffstats
path: root/llvm/test/CodeGen/Hexagon/pic-local.ll
blob: 6544b3d32165a05b2f8f8872d97277b7eda8ce8b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
; RUN: llc -march=hexagon -mcpu=hexagonv5 -relocation-model=pic < %s | FileCheck %s

define private void @f1() {
  ret void
}

define internal void @f2() {
  ret void
}

define void()* @get_f1() {
  ; CHECK:  r0 = add(pc,##.Lf1@PCREL)
  ret void()* @f1
}

define void()* @get_f2() {
  ; CHECK: r0 = add(pc,##f2@PCREL)
  ret void()* @f2
}
OpenPOWER on IntegriCloud