1
0
mirror of https://github.com/golang/go synced 2024-11-23 20:10:08 -07:00

runtime: fix typo in ARM code

The typo was introduced by one of Dmitriy's CLs this morning.
The fix makes the ARM build compile again; it still won't pass
its tests, but one thing at a time.

TBR=dvyukov
CC=golang-codereviews
https://golang.org/cl/55770044
This commit is contained in:
Russ Cox 2014-01-22 16:39:39 -05:00
parent 91fbf6f159
commit f7245c0626

View File

@ -49,7 +49,7 @@ runtime·xchgp(void* volatile* addr, void* v)
for(;;) {
old = *addr;
if(runtime·cas(addr, old, v))
if(runtime·casp(addr, old, v))
return old;
}
}