| Index: src/builtins.h
|
| diff --git a/src/builtins.h b/src/builtins.h
|
| index f264d57ec9a734189f2e920b118b578c24a6dcf5..44143514111bc4b2bc12e552dad19293abc7f244 100644
|
| --- a/src/builtins.h
|
| +++ b/src/builtins.h
|
| @@ -322,7 +322,8 @@ inline bool operator&(BuiltinExtraArguments lhs, BuiltinExtraArguments rhs) {
|
| V(ArrayIsArray, 2) \
|
| V(StringPrototypeCharAt, 2) \
|
| V(StringPrototypeCharCodeAt, 2) \
|
| - V(AtomicsLoad, 3)
|
| + V(AtomicsLoad, 3) \
|
| + V(AtomicsStore, 4)
|
|
|
| // Define list of builtin handlers implemented in assembly.
|
| #define BUILTIN_LIST_H(V) \
|
| @@ -681,6 +682,7 @@ class Builtins {
|
| static void Generate_MarkCodeAsExecutedTwice(MacroAssembler* masm);
|
|
|
| static void Generate_AtomicsLoad(CodeStubAssembler* assembler);
|
| + static void Generate_AtomicsStore(CodeStubAssembler* assembler);
|
|
|
| static void InitBuiltinFunctionTable();
|
|
|
|
|