Commit cccd66c6 authored by Josh Bleecher Snyder's avatar Josh Bleecher Snyder

runtime: remove unused variable

LGTM=bradfitz
R=golang-codereviews, bradfitz
CC=golang-codereviews
https://golang.org/cl/128230047
parent 68f91aea
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment