[lld] r268178 - ELF: New symbol table design.

Rafael EspĂ­ndola via llvm-commits llvm-commits at lists.llvm.org
Mon May 2 12:55:38 PDT 2016


To reproduce the problem:

clang -c test.s
clang -c test2.s
llvm-ar rc test2.a test2.o
ld.lld -shared -o test.so  test2.a test.o

with

test.s:
        addq    a at GOTTPOFF(%rip), %rax
test2.s:
        .section        .tdata,"awT", at progbits
        .globl  a
a:
        .long   42


Cheers,
Rafael


More information about the llvm-commits mailing list