Chromium Code Reviews| Index: runtime/vm/intermediate_language.cc |
| =================================================================== |
| --- runtime/vm/intermediate_language.cc (revision 17815) |
| +++ runtime/vm/intermediate_language.cc (working copy) |
| @@ -2719,7 +2719,7 @@ |
| static_cast<BinaryMathCFunction>(&pow)), 0, true); |
| extern const RuntimeEntry kModRuntimeEntry( |
| - "libc_fmod", reinterpret_cast<RuntimeFunction>( |
| + "libc_fmod_ieee", reinterpret_cast<RuntimeFunction>( |
| static_cast<BinaryMathCFunction>(&fmod)), 0, true); |
|
Vyacheslav Egorov (Google)
2013/01/30 01:21:21
How about declaring C function:
double modulo(dou
srdjan
2013/01/30 17:25:07
Excellent! Done.
On 2013/01/30 01:21:21, Vyachesl
|
| extern const RuntimeEntry kFloorRuntimeEntry( |