Index: test/ExecutionEngine/RuntimeDyld/X86/ELF_x86-64_PIC-small-relocations.s =================================================================== --- test/ExecutionEngine/RuntimeDyld/X86/ELF_x86-64_PIC-small-relocations.s +++ test/ExecutionEngine/RuntimeDyld/X86/ELF_x86-64_PIC-small-relocations.s @@ -0,0 +1,15 @@ +# RUN: llvm-mc -triple=x86_64-unknown-freebsd -code-model=small -relocation-model=pic -filetype=obj -o %T/testsmall_x86-64.o %s +# RUN: llvm-rtdyld -triple=x86_64-unknown-freebsd -verify -check=%s %/T/testsmall_x86-64.o + + .globl foo + .align 4, 0x90 +foo: + retq + + .globl main + .align 4, 0x90 +main: +# Test PC-rel branch. +# rtdyld-check: decode_operand(insn1, 0) = foo - next_pc(insn1) +insn1: + callq foo