diff options
author | Kevin Enderby <enderby@apple.com> | 2014-05-20 20:32:18 +0000 |
---|---|---|
committer | Kevin Enderby <enderby@apple.com> | 2014-05-20 20:32:18 +0000 |
commit | 1126d02c0ca06557dffdd1cf870693f2647bdc53 (patch) | |
tree | a5364c2de71c4e08de9ad0db888758364b41f89c /llvm/test/Object | |
parent | 4e53f9e1fe7d3709d7dc87e49fbcd37b8fed928a (diff) | |
download | bcm5719-llvm-1126d02c0ca06557dffdd1cf870693f2647bdc53.tar.gz bcm5719-llvm-1126d02c0ca06557dffdd1cf870693f2647bdc53.zip |
Update MachOObjectFile::getSymbolAddress so it returns UnknownAddressOrSize
for undefined symbols. Allowing llvm-nm to print spaces instead of 0’s for
the value of undefined symbols in Mach-O files.
llvm-svn: 209235
Diffstat (limited to 'llvm/test/Object')
-rw-r--r-- | llvm/test/Object/nm-trivial-object.test | 8 | ||||
-rw-r--r-- | llvm/test/Object/nm-universal-binary.test | 2 |
2 files changed, 5 insertions, 5 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. diff --git a/llvm/test/Object/nm-universal-binary.test b/llvm/test/Object/nm-universal-binary.test index faf4812e537..c20c733dcd8 100644 --- a/llvm/test/Object/nm-universal-binary.test +++ b/llvm/test/Object/nm-universal-binary.test @@ -13,7 +13,7 @@ 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: 0000000000000000 U _printf +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 |