21 lines · plain
1# REQUIRES: system-linux2# RUN: llvm-mc -triple=systemz-unknown-linux -position-independent \3# RUN: -filetype=obj -o %t.o %s4#5# RUN: llvm-jitlink -noexec %t.o6#7# Check R_390_PC* handling.8 9 .text10 .globl main11 .type main,@function12main:13 br %r14 14 .size main, .-main15 16 .rodata17 .short main-. # Generate R_390_PC16 relocation.18 .long main-. # Generate R_390_PC32 relocation.19 .quad main-. # Generate R_390_PC64 relocation.20 21