reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
1 2 3 4 5 6 7 8 9 10 11 | # REQUIRES: arm # RUN: llvm-mc -filetype=obj -triple=armv7a-none-linux-gnueabi /dev/null -o %t.o # This is a test case for PR33029. Making sure that linker can digest # the above script without dumping core. # RUN: ld.lld -emit-relocs -T %s %t.o -shared -o %t.so SECTIONS { .rel.dyn : {} .zed : { PROVIDE_HIDDEN (foobar = .); } } |