mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 08:31:29 +00:00
[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",
|
||||
"expm1",
|
||||
"expm1f",
|
||||
"exp10",
|
||||
"exp10f",
|
||||
"__exp10",
|
||||
"__exp10f",
|
||||
"free",
|
||||
"getrusage",
|
||||
"hypot",
|
||||
|
||||
Reference in New Issue
Block a user