diff options
author | Kevin Enderby <enderby@apple.com> | 2014-05-20 23:04:47 +0000 |
---|---|---|
committer | Kevin Enderby <enderby@apple.com> | 2014-05-20 23:04:47 +0000 |
commit | 1b985af0ba97dcc51adfd384611a329c8d86954b (patch) | |
tree | 14851fe2df526902b15eccff7cc982fad6513608 /llvm/test/Object/nm-trivial-object.test | |
parent | 60354bd3cf839778c92ac66b66de5794aa0ebd33 (diff) | |
download | bcm5719-llvm-1b985af0ba97dcc51adfd384611a329c8d86954b.tar.gz bcm5719-llvm-1b985af0ba97dcc51adfd384611a329c8d86954b.zip |
Update MachOObjectFile::getSymbolAddress so it returns UnknownAddressOrSize
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.
llvm-svn: 209253
Diffstat (limited to 'llvm/test/Object/nm-trivial-object.test')
-rw-r--r-- | llvm/test/Object/nm-trivial-object.test | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/test/Object/nm-trivial-object.test b/llvm/test/Object/nm-trivial-object.test index 11174928980..20ac6621e72 100644 --- a/llvm/test/Object/nm-trivial-object.test +++ b/llvm/test/Object/nm-trivial-object.test @@ -55,14 +55,14 @@ WEAK-ELF64: 0000000000000000 V x2 ABSOLUTE-ELF64: 0000000000000123 a a1 ABSOLUTE-ELF64: 0000000000000123 A a2 -macho: 00000000 U _SomeOtherFunction +macho: U _SomeOtherFunction macho: 00000000 T _main -macho: 00000000 U _puts +macho: U _puts macho64: 0000000000000028 s L_.str -macho64: 0000000000000000 U _SomeOtherFunction +macho64: U _SomeOtherFunction macho64: 0000000000000000 T _main -macho64: 0000000000000000 U _puts +macho64: U _puts Test that nm uses addresses even with ELF .o files. |