Commit 423ab233 authored by Rob Pike's avatar Rob Pike

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
parent 894222f9
......@@ -231,7 +231,7 @@ span(void)
*bp++ = v;
*bp++ = v>>8;
*bp++ = v>>16;
*bp = v>>24;
*bp++ = v>>24;
}
}
}
......
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