mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-11 13:44:28 +00:00
Handle each of stderr/stdin/stdout separately.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33373 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
ab60be7a00
commit
81e3954dc9
@ -172,7 +172,11 @@ void* DynamicLibrary::SearchForAddressOfSymbol(const char* symbolName) {
|
||||
{
|
||||
#ifndef stdin
|
||||
EXPLICIT_SYMBOL(stdin);
|
||||
#endif
|
||||
#ifndef stdout
|
||||
EXPLICIT_SYMBOL(stdout);
|
||||
#endif
|
||||
#ifndef stderr
|
||||
EXPLICIT_SYMBOL(stderr);
|
||||
#endif
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user