1# REQUIRES: x86 2# RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %S/Inputs/verneed1.s -o %t1.o 3# RUN: echo "v1 {}; v2 {}; v3 { local: *; };" > %t.script 4# RUN: ld.lld -shared %t1.o --version-script %t.script -o %t.so 5 6# RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %s -o %t.o 7# RUN: ld.lld %t.o --as-needed %t.so -o %t 8# RUN: llvm-readobj -V %t | FileCheck %s 9 10# CHECK: VersionRequirements [ 11# CHECK-NEXT: ] 12 13.weak f1 14 15.globl _start 16_start: 17.data 18.quad f1 19