| Index: src/runtime.h
|
| diff --git a/src/runtime.h b/src/runtime.h
|
| index bd24c3b38e3be9a617c3fcdb7a9d7470f4e8ae2e..9fe1b3adeccc658c35017b8dd1a45fe9ea790b64 100644
|
| --- a/src/runtime.h
|
| +++ b/src/runtime.h
|
| @@ -189,6 +189,9 @@ namespace internal {
|
| F(Math_atan2, 2, 1) \
|
| F(RoundNumber, 1, 1) \
|
| F(Math_fround, 1, 1) \
|
| + F(DoubleHi, 1, 1) \
|
| + F(DoubleLo, 1, 1) \
|
| + F(ConstructDouble, 2, 1) \
|
| \
|
| /* Regular expressions */ \
|
| F(RegExpCompile, 3, 1) \
|
| @@ -667,7 +670,10 @@ namespace internal {
|
| F(RegExpExec, 4, 1) \
|
| F(RegExpConstructResult, 3, 1) \
|
| F(GetFromCache, 2, 1) \
|
| - F(NumberToString, 1, 1)
|
| + F(NumberToString, 1, 1) \
|
| + F(DoubleHi, 1, 1) \
|
| + F(DoubleLo, 1, 1) \
|
| + F(ConstructDouble, 2, 1)
|
|
|
|
|
| //---------------------------------------------------------------------------
|
|
|