| Index: src/runtime/runtime.cc
|
| diff --git a/src/runtime/runtime.cc b/src/runtime/runtime.cc
|
| index a490327af5266b5aac5e4cbe99a0f73cfa0a4797..15451c5c6e3828f356df456fe720d834ae633518 100644
|
| --- a/src/runtime/runtime.cc
|
| +++ b/src/runtime/runtime.cc
|
| @@ -4,6 +4,7 @@
|
|
|
| #include "src/runtime/runtime.h"
|
|
|
| +#include "src/contexts.h"
|
| #include "src/handles-inl.h"
|
| #include "src/heap/heap.h"
|
| #include "src/isolate.h"
|
| @@ -41,9 +42,10 @@ FOR_EACH_INTRINSIC_RETURN_PAIR(P)
|
| } \
|
| ,
|
|
|
| -
|
| static const Runtime::Function kIntrinsicFunctions[] = {
|
| - FOR_EACH_INTRINSIC(F) FOR_EACH_INTRINSIC(I)};
|
| + FOR_EACH_INTRINSIC(F)
|
| + FOR_EACH_INTRINSIC(I)
|
| +};
|
|
|
| #undef I
|
| #undef F
|
|
|