[ELF] Make SyntheticSection parameter order match InputSection
[llvm-project.git] / lld / test / ELF / znotext-weak-undef.s
blob614cbddd74a8e404b4aad485563e3d0c38ab3dc0
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: error: relocation R_X86_64_32 cannot be used against symbol 'foo'; recompile with -fPIC
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: ]
11 .weak foo
13 _start:
14 mov $foo,%eax