Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1192)

Unified Diff: src/objects.h

Issue 2623633003: [Atomics] Make Atomics.exchange a builtin using TF (Closed)
Patch Set: Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/objects.h
diff --git a/src/objects.h b/src/objects.h
index 53c5e18c53dc60602d28997bffa3236ec2b04ffb..fbcb22059dc6a1840832d454250f975a8a19a8d7 100644
--- a/src/objects.h
+++ b/src/objects.h
@@ -7108,7 +7108,8 @@ class Script: public Struct {
#define ATOMIC_FUNCTIONS_WITH_ID_LIST(V) \
V(Atomics, load, AtomicsLoad) \
- V(Atomics, store, AtomicsStore)
+ V(Atomics, store, AtomicsStore) \
+ V(Atomics, exchange, AtomicsExchange)
enum BuiltinFunctionId {
kArrayCode,

Powered by Google App Engine
This is Rietveld 408576698