mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 12:12:47 +01:00
bf08e82d8e
llvm-svn: 79992
15 lines
268 B
LLVM
15 lines
268 B
LLVM
; RUN: llvm-as < %s | \
|
|
; RUN: llc -mtriple=x86_64-pc-linux -relocation-model=pic -o %t1
|
|
; RUN: grep {leaq f(%rip),} %t1
|
|
; RUN: not grep GOTPCREL %t1
|
|
|
|
define void ()* @g() nounwind {
|
|
entry:
|
|
ret void ()* @f
|
|
}
|
|
|
|
define internal void @f() nounwind {
|
|
entry:
|
|
ret void
|
|
}
|