1; RUN: llc -filetype=obj -relax-elf-relocations=true -mtriple=x86_64-linux-gnu -o - %s |  llvm-objdump - -d -r | FileCheck %s
2
3; CHECK: jmpq *(%rip)
4; CHECK-NEXT: R_X86_64_GOTPCRELX
5
6define i32 @main() {
7entry:
8  %call = tail call i32 @foo()
9  ret i32 %call
10}
11
12; Function Attrs: nonlazybind
13declare i32 @foo() #1
14
15attributes #1 = { nonlazybind }
16