mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-12 07:41:14 +00:00
Fix misplaced right parentheses.
llvm-svn: 61699
This commit is contained in:
parent
21349e4801
commit
b3026de547
@ -123,9 +123,9 @@ void *JIT::getPointerToNamedFunction(const std::string &Name,
|
||||
// First try turning $LDBLStub into $LDBL128. If that fails, strip it off.
|
||||
// This mirrors logic in libSystemStubs.a.
|
||||
std::string Prefix = std::string(Name.begin(), Name.end()-9);
|
||||
if (void *Ptr = getPointerToNamedFunction(Prefix+"$LDBL128"), false)
|
||||
if (void *Ptr = getPointerToNamedFunction(Prefix+"$LDBL128", false))
|
||||
return Ptr;
|
||||
if (void *Ptr = getPointerToNamedFunction(Prefix), false)
|
||||
if (void *Ptr = getPointerToNamedFunction(Prefix, false))
|
||||
return Ptr;
|
||||
}
|
||||
#endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user