| Index: src/runtime/runtime.h
|
| diff --git a/src/runtime/runtime.h b/src/runtime/runtime.h
|
| index e2c77406e6fba6cc227ee8fc3b39f2a5889a1665..34d12480582d9eb72e824b0c2832a21e0f13bd28 100644
|
| --- a/src/runtime/runtime.h
|
| +++ b/src/runtime/runtime.h
|
| @@ -931,6 +931,7 @@ namespace internal {
|
| F(DataViewSetFloat32, 4, 1) \
|
| F(DataViewSetFloat64, 4, 1)
|
|
|
| +#define FOR_EACH_INTRINSIC_WASM(F) F(WasmGrowMemory, 1, 1)
|
|
|
| #define FOR_EACH_INTRINSIC_RETURN_PAIR(F) \
|
| F(LoadLookupSlotForCall, 1, 2)
|
| @@ -994,7 +995,8 @@ namespace internal {
|
| FOR_EACH_INTRINSIC_STRINGS(F) \
|
| FOR_EACH_INTRINSIC_SYMBOL(F) \
|
| FOR_EACH_INTRINSIC_TEST(F) \
|
| - FOR_EACH_INTRINSIC_TYPEDARRAY(F)
|
| + FOR_EACH_INTRINSIC_TYPEDARRAY(F) \
|
| + FOR_EACH_INTRINSIC_WASM(F)
|
|
|
| // FOR_EACH_INTRINSIC defines the list of all intrinsics, coming in 2 flavors,
|
| // either returning an object or a pair.
|
|
|