aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/X86/test-pic-3.ll
blob: 91b47613703ff84a2abd0997f363e227d834112b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
; RUN: llvm-as < %s | llc -mtriple=i686-pc-linux-gnu -relocation-model=pic \
; RUN:   -o %t -f
; RUN: grep _GLOBAL_OFFSET_TABLE_ %t
; RUN: grep piclabel %t | wc -l | grep 3
; RUN: grep PLT %t | wc -l | grep 1

define void @bar() {
entry:
    call void(...)* @foo()
    br label %return
return:
    ret void
}

declare void @foo(...)