[llvm-commits] [llvm] r140629 - /llvm/trunk/lib/Support/SearchForAddressOfSpecialSymbol.cpp
Chad Rosier
mcrosier at apple.com
Tue Sep 27 13:01:41 PDT 2011
Author: mcrosier
Date: Tue Sep 27 15:01:41 2011
New Revision: 140629
URL: http://llvm.org/viewvc/llvm-project?rev=140629&view=rev
Log:
These symbols appear to be visible by SearchForAddressOfSymbol and no longer
require special case handling.
rdar://10117377
Modified:
llvm/trunk/lib/Support/SearchForAddressOfSpecialSymbol.cpp
Modified: llvm/trunk/lib/Support/SearchForAddressOfSpecialSymbol.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Support/SearchForAddressOfSpecialSymbol.cpp?rev=140629&r1=140628&r2=140629&view=diff
==============================================================================
--- llvm/trunk/lib/Support/SearchForAddressOfSpecialSymbol.cpp (original)
+++ llvm/trunk/lib/Support/SearchForAddressOfSpecialSymbol.cpp Tue Sep 27 15:01:41 2011
@@ -28,21 +28,6 @@
#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
More information about the llvm-commits
mailing list