[clang-tidy][modernize-use-starts-ends-with] Fix operator rewriting false negative...
[llvm-project.git] / lld / test / ELF / no-plt-shared.s
blobac45ed502c38ca5ee2948304513a5c2be05dc854
1 // REQUIRES: x86
2 // RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %p/Inputs/shared.s -o %t.o
3 // RUN: ld.lld %t.o -o %t.so -shared
5 // RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %s -o %t2.o
6 // RUN: ld.lld %t2.o %t.so -o %t2.so -shared
7 // RUN: llvm-readobj -r %t2.so | FileCheck %s
9 .data
10 fp:
11 .quad bar
13 // CHECK: Relocations [
14 // CHECK-NEXT: Section ({{.*}}) .rela.dyn {
15 // CHECK-NEXT: R_X86_64_64 bar 0x0
16 // CHECK-NEXT: }
17 // CHECK-NEXT: ]