[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:
@@ -87,6 +87,10 @@ extern "C" const char* Kotlin_callsCheckerGoodFunctionNames[] = {
|
|||||||
"expf",
|
"expf",
|
||||||
"expm1",
|
"expm1",
|
||||||
"expm1f",
|
"expm1f",
|
||||||
|
"exp10",
|
||||||
|
"exp10f",
|
||||||
|
"__exp10",
|
||||||
|
"__exp10f",
|
||||||
"free",
|
"free",
|
||||||
"getrusage",
|
"getrusage",
|
||||||
"hypot",
|
"hypot",
|
||||||
|
|||||||
Reference in New Issue
Block a user