mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-26 04:32:44 +01:00
d55cebfaec
When a the Apple link editor builds a kext bundle file type and the value of the -miphoneos-version-min argument is significantly current (like 11.0) then the (__TEXT,__text) section is changed to the (__TEXT_EXEC,__text) section. So it would be nice for llvm-nm to show symbols in that section with a type of T instead of the generic type of S for some section other than text, data, etc. rdar://36262205 llvm-svn: 323836
5 lines
131 B
Plaintext
5 lines
131 B
Plaintext
RUN: llvm-nm %p/Inputs/kextbundle.macho-aarch64 | FileCheck %s
|
|
|
|
CHECK: 0000000000004014 s _bar.stub
|
|
CHECK: 0000000000004000 T _foo
|