diff options
author | Chad Rosier <mcrosier@apple.com> | 2011-09-27 20:01:41 +0000 |
---|---|---|
committer | Chad Rosier <mcrosier@apple.com> | 2011-09-27 20:01:41 +0000 |
commit | ce496ca9c8429998ef68af13f5a45c11c712e8a8 (patch) | |
tree | 7568037a5659499c8ccd6ad9243c8ce99742a4ba | |
parent | 9142ae2cf802dbcd1c622154ac9b5305fb26c38f (diff) | |
download | external_llvm-ce496ca9c8429998ef68af13f5a45c11c712e8a8.zip external_llvm-ce496ca9c8429998ef68af13f5a45c11c712e8a8.tar.gz external_llvm-ce496ca9c8429998ef68af13f5a45c11c712e8a8.tar.bz2 |
These symbols appear to be visible by SearchForAddressOfSymbol and no longer
require special case handling.
rdar://10117377
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@140629 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Support/SearchForAddressOfSpecialSymbol.cpp | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/lib/Support/SearchForAddressOfSpecialSymbol.cpp b/lib/Support/SearchForAddressOfSpecialSymbol.cpp index d638301..2d23902 100644 --- a/lib/Support/SearchForAddressOfSpecialSymbol.cpp +++ b/lib/Support/SearchForAddressOfSpecialSymbol.cpp @@ -28,21 +28,6 @@ static void *DoSearch(const char* symbolName) { #ifdef __APPLE__ { - EXPLICIT_SYMBOL(__ashldi3); - EXPLICIT_SYMBOL(__ashrdi3); - EXPLICIT_SYMBOL(__cmpdi2); - EXPLICIT_SYMBOL(__divdi3); - EXPLICIT_SYMBOL(__fixdfdi); - EXPLICIT_SYMBOL(__fixsfdi); - EXPLICIT_SYMBOL(__fixunsdfdi); - EXPLICIT_SYMBOL(__fixunssfdi); - EXPLICIT_SYMBOL(__floatdidf); - EXPLICIT_SYMBOL(__floatdisf); - EXPLICIT_SYMBOL(__lshrdi3); - EXPLICIT_SYMBOL(__moddi3); - EXPLICIT_SYMBOL(__udivdi3); - EXPLICIT_SYMBOL(__umoddi3); - // __eprintf is sometimes used for assert() handling on x86. // // FIXME: Currently disabled when using Clang, as we don't always have our |