1# REQUIRES: x86
2# RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %s -o %t.o
3# RUN: ld.lld %t.o -o %t -pie
4# RUN: llvm-readobj -r %t | FileCheck %s
5
6# CHECK:      Relocations [
7# CHECK-NEXT: ]
8
9.global _start
10_start:
11.long _end - .
12