mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-22 23:24:59 +00:00
[C++] Use 'nullptr'. Target edition.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@207197 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -30,7 +30,7 @@ const FuncNameSignature PredefinedFuncs[] = {
|
||||
{ "__fixunssfsi", { FSig, NoFPRet } },
|
||||
{ "__fixunssfdi", { FSig, NoFPRet } },
|
||||
{ "__floatundisf", { NoSig, FRet } },
|
||||
{ 0, { NoSig, NoFPRet } }
|
||||
{ nullptr, { NoSig, NoFPRet } }
|
||||
};
|
||||
|
||||
// just do a search for now. there are very few of these special cases.
|
||||
@@ -44,7 +44,7 @@ extern FuncSignature const *findFuncSignature(const char *name) {
|
||||
return &PredefinedFuncs[i].Signature;
|
||||
i++;
|
||||
}
|
||||
return 0;
|
||||
return nullptr;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user