forked from OSchip/llvm-project
10 lines
323 B
Plaintext
10 lines
323 B
Plaintext
# Check that tail calls can be 2 bytes in the output binary.
|
|
|
|
RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-unknown -o %t.o \
|
|
RUN: %S/Inputs/relaxed_tc.s
|
|
RUN: ld.lld %t.o -o %t.exe -q
|
|
RUN: llvm-bolt %t.exe --relocs -o %t
|
|
RUN: llvm-objdump -d --disassemble-symbols=foo %t | FileCheck %s
|
|
|
|
CHECK: eb 00 jmp {{.*}} <bar>
|