1
0
mirror of https://github.com/golang/go synced 2024-11-22 05:04:40 -07:00

5l: fix arm linker bug introduced by 4742041

Should fix the arm build.

R=golang-dev, dsymonds, adg
CC=golang-dev
https://golang.org/cl/4777041
This commit is contained in:
Rob Pike 2011-07-19 15:44:25 +10:00
parent 894222f9de
commit 423ab2333a

View File

@ -231,7 +231,7 @@ span(void)
*bp++ = v; *bp++ = v;
*bp++ = v>>8; *bp++ = v>>8;
*bp++ = v>>16; *bp++ = v>>16;
*bp = v>>24; *bp++ = v>>24;
} }
} }
} }