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 | ## Test that llvm-readobj/llvm-readelf shows proper relocation type ## names and values for macho-arm target. ## TODO: use yaml2obj. # RUN: llvm-readobj -r --expand-relocs %p/Inputs/relocs.obj.macho-arm | FileCheck %s # CHECK: Type: ARM_RELOC_VANILLA (0) # CHECK: Type: ARM_RELOC_PAIR (1) # CHECK: Type: ARM_RELOC_SECTDIFF (2) # CHECK: Type: ARM_RELOC_LOCAL_SECTDIFF (3) # CHECK: Type: ARM_RELOC_PB_LA_PTR (4) # CHECK: Type: ARM_RELOC_BR24 (5) # CHECK: Type: ARM_THUMB_RELOC_BR22 (6) # CHECK: Type: ARM_THUMB_32BIT_BRANCH (7) # CHECK: Type: ARM_RELOC_HALF (8) # CHECK: Type: ARM_RELOC_HALF_SECTDIFF (9) |