2009-09-11 20:36:27 +02:00
|
|
|
; RUN: llc < %s -mtriple=x86_64-pc-linux -relocation-model=pic -o %t1
|
2008-06-09 11:52:31 +02:00
|
|
|
; RUN: grep {leaq f(%rip),} %t1
|
|
|
|
; RUN: not grep GOTPCREL %t1
|
|
|
|
|
|
|
|
define void ()* @g() {
|
|
|
|
entry:
|
|
|
|
ret void ()* @f
|
|
|
|
}
|
|
|
|
|
|
|
|
declare hidden void @f()
|