build: Go back to dropping __eprintf reference when building with Clang, see

comment.

llvm-svn: 121146
This commit is contained in:
Daniel Dunbar 2010-12-07 16:29:44 +00:00
parent fb17a54866
commit 6d79685e20

View File

@ -44,8 +44,13 @@ static void *DoSearch(const char* symbolName) {
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
// runtime support libraries available.
#ifndef __clang__
#ifdef __i386__
EXPLICIT_SYMBOL(__eprintf);
#endif
#endif
}
#endif