mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-03 00:33:09 +00:00
for consistency, allow a fallthrough if the final check returns null.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44406 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
4b341b4178
commit
5e037fce2b
@ -113,7 +113,8 @@ void *JIT::getPointerToNamedFunction(const std::string &Name) {
|
||||
std::string Prefix = std::string(Name.begin(), Name.end()-9);
|
||||
if (void *Ptr = getPointerToNamedFunction(Prefix+"$LDBL128"))
|
||||
return Ptr;
|
||||
return getPointerToNamedFunction(Prefix);
|
||||
if (void *Ptr = getPointerToNamedFunction(Prefix))
|
||||
return Ptr;
|
||||
}
|
||||
#endif
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user