Index: lld/trunk/test/ELF/x86-64-reloc-32-fpic.s =================================================================== --- lld/trunk/test/ELF/x86-64-reloc-32-fpic.s +++ lld/trunk/test/ELF/x86-64-reloc-32-fpic.s @@ -1,6 +1,7 @@ # REQUIRES: x86 # RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t.o # RUN: not ld.lld -shared %t.o -o %t.so 2>&1 | FileCheck %s -# CHECK: can't create dynamic relocation R_X86_64_32 against readonly segment +# CHECK: relocation R_X86_64_32 cannot be used when making a shared object; recompile with -fPIC. +.data .long _shared Index: lld/trunk/test/ELF/x86-64-reloc-pc32-fpic.s =================================================================== --- lld/trunk/test/ELF/x86-64-reloc-pc32-fpic.s +++ lld/trunk/test/ELF/x86-64-reloc-pc32-fpic.s @@ -1,6 +1,7 @@ # REQUIRES: x86 # RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t.o # RUN: not ld.lld -shared %t.o -o %t.so 2>&1 | FileCheck %s -# CHECK: can't create dynamic relocation R_X86_64_PC32 against readonly segment +# CHECK: relocation R_X86_64_PC32 cannot be used when making a shared object; recompile with -fPIC. +.data call _shared