1# REQUIRES: x86 2 3# BFD reports a parse error on empty lists, but it is clear how to 4# handle it. 5 6# RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %s -o %t.o 7# RUN: echo "{ };" > %t.list 8# RUN: ld.lld -dynamic-list %t.list -shared %t.o -o %t.so 9# RUN: llvm-readobj -r %t.so | FileCheck %s 10 11# CHECK: Relocations [ 12# CHECK-NEXT: ] 13 14 .globl foo 15foo: 16 ret 17 18 call foo@PLT 19