| Index: runtime/vm/atomic.h
|
| diff --git a/runtime/vm/atomic.h b/runtime/vm/atomic.h
|
| index fc6257ec7ef95354dec1cad327cf59d7e48782ae..026762f2c611871a87bb8883c166a6f5f370617e 100644
|
| --- a/runtime/vm/atomic.h
|
| +++ b/runtime/vm/atomic.h
|
| @@ -26,6 +26,7 @@ class AtomicOperations : public AllStatic {
|
| // NOTE: Not to be used for any atomic operations involving memory locations
|
| // that are accessed by generated code.
|
| static void IncrementBy(intptr_t* p, intptr_t value);
|
| + static void IncrementInt64By(int64_t* p, int64_t value);
|
|
|
| // Atomically fetch the value at p and decrement the value at p.
|
| // Returns the original value at p.
|
|
|