| Index: src/objects.h
|
| diff --git a/src/objects.h b/src/objects.h
|
| index 526f20dd1893d148c339fe53e86917914adfa0ab..1332623342f2302e8339b9a1ba538380528bdbea 100644
|
| --- a/src/objects.h
|
| +++ b/src/objects.h
|
| @@ -6562,11 +6562,16 @@ class Script: public Struct {
|
| V(Math, clz32, MathClz32) \
|
| V(Math, fround, MathFround)
|
|
|
| +#define ATOMIC_FUNCTIONS_WITH_ID_LIST(V) \
|
| + V(Atomics, load, AtomicsLoad) \
|
| + V(Atomics, store, AtomicsStore)
|
| +
|
| enum BuiltinFunctionId {
|
| kArrayCode,
|
| #define DECLARE_FUNCTION_ID(ignored1, ignore2, name) \
|
| k##name,
|
| FUNCTIONS_WITH_ID_LIST(DECLARE_FUNCTION_ID)
|
| + ATOMIC_FUNCTIONS_WITH_ID_LIST(DECLARE_FUNCTION_ID)
|
| #undef DECLARE_FUNCTION_ID
|
| // Fake id for a special case of Math.pow. Note, it continues the
|
| // list of math functions.
|
|
|