diff options
Diffstat (limited to 'src/pkg/runtime')
| -rw-r--r-- | src/pkg/runtime/atomic_arm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/runtime/atomic_arm.c b/src/pkg/runtime/atomic_arm.c index 537bf18331..0cb823bb48 100644 --- a/src/pkg/runtime/atomic_arm.c +++ b/src/pkg/runtime/atomic_arm.c @@ -172,7 +172,7 @@ runtimeĀ·atomicstore64(uint64 volatile *addr, uint64 v) void runtimeĀ·atomicor8(byte volatile *addr, byte v) { - uint32 *addr32, old, word, shift; + uint32 *addr32, old, word; // Align down to 4 bytes and use 32-bit CAS. addr32 = (uint32*)((uintptr)addr & ~3); |
