[Demangle] Add a few more options to the microsoft demangler
[llvm-complete.git] / test / CodeGen / X86 / tailjmp_gotpcrel_relax_relocation.ll
blob3fb161cc2cbaafb0689b539d8558f4768fcb1060
1 ; RUN: llc -filetype=obj -relax-elf-relocations=true -mtriple=x86_64-linux-gnu -o - %s |  llvm-objdump - -d -r | FileCheck %s
3 ; CHECK: jmpq *(%rip)
4 ; CHECK-NEXT: R_X86_64_GOTPCRELX
6 define i32 @main() {
7 entry:
8   %call = tail call i32 @foo()
9   ret i32 %call
12 ; Function Attrs: nonlazybind
13 declare i32 @foo() #1
15 attributes #1 = { nonlazybind }