This finishes the ability of llvm-objdump to print out all information from the LC_DYLD_INFO load command. The -bind option prints out symbolic references that dyld must resolve immediately. The -lazy-bind option prints out symbolc reference that are lazily resolved on first use. The -weak-bind option prints out information about symbols which dyld must try to coalesce across images. llvm-svn: 217853
11 lines
614 B
Plaintext
11 lines
614 B
Plaintext
# RUN: llvm-objdump -macho -weak-bind -arch x86_64 \
|
|
# RUN: %p/Inputs/weak-bind.macho-x86_64 | FileCheck %s
|
|
|
|
|
|
# CHECK: __DATA __data 0x100001018 pointer 0 __ZTISt12out_of_range
|
|
# CHECK: __DATA __data 0x100001020 pointer 0 __ZTISt12out_of_range
|
|
# CHECK: __DATA __data 0x100001028 pointer 0 __ZTISt12out_of_range
|
|
# CHECK: strong __ZdlPv
|
|
# CHECK: __DATA __data 0x100001018 pointer 0 __Znam
|
|
# CHECK: strong __Znwm
|