[K/N] Add exp10 and exp10f to good function list for call checker

Clang may replace a call to `pow (10.0, x)` with a call to `exp10(x)`
(or `__exp10` on MacOS).

We use this function in float parsing logic, so this function should
be added to the good function list.
This commit is contained in:
Ilya Matveev
2021-07-13 14:07:56 +07:00
committed by Space
parent 0f2e653625
commit 922aad6865

View File

@@ -87,6 +87,10 @@ extern "C" const char* Kotlin_callsCheckerGoodFunctionNames[] = {
"expf",
"expm1",
"expm1f",
"exp10",
"exp10f",
"__exp10",
"__exp10f",
"free",
"getrusage",
"hypot",