1# REQUIRES: x86
2# RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %s -o %t.o
3# RUN: not ld.lld -z notext -shared %t.o -o /dev/null 2>&1 | FileCheck %s
4# CHECK: relocation R_X86_64_32 cannot be used against symbol foo; recompile with -fPIC
5
6# RUN: ld.lld -z notext %t.o -o %t
7# RUN: llvm-readobj -r %t | FileCheck %s --check-prefix=EXE
8# EXE:      Relocations [
9# EXE-NEXT: ]
10
11.weak foo
12
13_start:
14mov $foo,%eax
15