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 | // RUN: llvm-mc -triple x86_64-unknown-windows-msvc -filetype obj -o - %s | llvm-readobj --symbols - | FileCheck %s g: movl foo(%rip), %eax retq .weak foo // CHECK: Symbol { // CHECK: Name: foo // CHECK: Section: IMAGE_SYM_UNDEFINED (0) // CHECK: StorageClass: WeakExternal (0x69) // CHECK: } |