brintos

brintos / llvm-project-archived public Read only

0
0
Text · 398 B · 5686ce0 Raw
19 lines · plain
1# REQUIRES: x862 3# BFD reports a parse error on empty lists, but it is clear how to4# handle it.5 6# RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %s -o %t.o7# RUN: echo "{ };" > %t.list8# RUN: ld.lld -dynamic-list %t.list -shared %t.o -o %t.so9# RUN: llvm-readobj -r %t.so | FileCheck  %s10 11# CHECK:      Relocations [12# CHECK-NEXT: ]13 14        .globl foo15foo:16        ret17 18        call foo@PLT19