Index: runtime/vm/atomic.h |
diff --git a/runtime/vm/atomic.h b/runtime/vm/atomic.h |
index 75d0b846fa746ff1e277c9256c5aa521ce7fba91..c66c2cf680fd784752880e1843dc54b76a8b67a7 100644 |
--- a/runtime/vm/atomic.h |
+++ b/runtime/vm/atomic.h |
@@ -48,8 +48,9 @@ class AtomicOperations : public AllStatic { |
// |
// NOTE: OK to use with memory locations that are accessed by generated code |
static uword CompareAndSwapWord(uword* ptr, uword old_value, uword new_value); |
- static uint32_t CompareAndSwapUint32( |
- uint32_t* ptr, uint32_t old_value, uint32_t new_value); |
+ static uint32_t CompareAndSwapUint32(uint32_t* ptr, |
+ uint32_t old_value, |
+ uint32_t new_value); |
// Performs a load of a word from 'ptr', but without any guarantees about |
// memory order (i.e., no load barriers/fences). |