mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 03:02:36 +01:00
[JIT] Add small-code model test for ELF.
The coverage is almost non-existent, hopefully more will come after this. Differential Revision: http://reviews.llvm.org/D16096 llvm-svn: 258087
This commit is contained in:
parent
7414572d7c
commit
410fab022e
@ -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
|
Loading…
Reference in New Issue
Block a user