mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 04:30:12 +00:00
b38059ab25
for undefined symbols, so it matches what COFFObjectFile::getSymbolAddress does. This allows llvm-nm to print spaces instead of 0’s for the value of undefined symbols in Mach-O files. To make this change other uses of MachOObjectFile::getSymbolAddress are updated to handle when the Value is returned as UnknownAddressOrSize. Which is needed to keep two of the ExecutionEngine tests working for example. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@209253 91177308-0d34-0410-b5e6-96231b3b80d8
20 lines
730 B
Plaintext
20 lines
730 B
Plaintext
RUN: llvm-nm %p/Inputs/macho-universal.x86_64.i386 \
|
|
RUN: | FileCheck %s -check-prefix CHECK-OBJ
|
|
RUN: llvm-nm %p/Inputs/macho-universal-archive.x86_64.i386 \
|
|
RUN: | FileCheck %s -check-prefix CHECK-AR
|
|
|
|
CHECK-OBJ: macho-universal.x86_64.i386:x86_64
|
|
CHECK-OBJ: 0000000100000f60 T _main
|
|
CHECK-OBJ: macho-universal.x86_64.i386:i386
|
|
CHECK-OBJ: 00001fa0 T _main
|
|
|
|
CHECK-AR: macho-universal-archive.x86_64.i386:x86_64:hello.o:
|
|
CHECK-AR: 0000000000000068 s EH_frame0
|
|
CHECK-AR: 000000000000003b s L_.str
|
|
CHECK-AR: 0000000000000000 T _main
|
|
CHECK-AR: 0000000000000080 S _main.eh
|
|
CHECK-AR: U _printf
|
|
CHECK-AR: macho-universal-archive.x86_64.i386:i386:foo.o:
|
|
CHECK-AR: 00000008 S _bar
|
|
CHECK-AR: 00000000 T _foo
|