mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-06 20:32:19 +00:00
Fix misplaced right parentheses.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61699 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
84fb959489
commit
5951368409
@ -123,9 +123,9 @@ void *JIT::getPointerToNamedFunction(const std::string &Name,
|
|||||||
// First try turning $LDBLStub into $LDBL128. If that fails, strip it off.
|
// First try turning $LDBLStub into $LDBL128. If that fails, strip it off.
|
||||||
// This mirrors logic in libSystemStubs.a.
|
// This mirrors logic in libSystemStubs.a.
|
||||||
std::string Prefix = std::string(Name.begin(), Name.end()-9);
|
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;
|
return Ptr;
|
||||||
if (void *Ptr = getPointerToNamedFunction(Prefix), false)
|
if (void *Ptr = getPointerToNamedFunction(Prefix, false))
|
||||||
return Ptr;
|
return Ptr;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user