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 12 13 14 15 16 17 18 19 20 21 | ## Stripping unneeded symbols from execuatble/DSO should ## eliminate the static symbol table, because it's not used ## by the dynamic loader. # RUN: yaml2obj %s > %t # RUN: cp %t %t1 # RUN: llvm-objcopy --strip-unneeded %t %t2 # RUN: llvm-readobj --section-headers %t2 | FileCheck %s !ELF FileHeader: Class: ELFCLASS64 Data: ELFDATA2LSB Type: ET_EXEC Machine: EM_X86_64 Symbols: - Name: bar - Name: foo Binding: STB_GLOBAL # CHECK-NOT: .symtab |