Commit f4f2cf16 authored by Russ Cox's avatar Russ Cox

runtime: mark arm _lsvh nosplit (may fix arm build)

Mark the 386 one too for consistency,
although most of that code is no longer used.

TBR=dvyukov
CC=golang-dev
https://golang.org/cl/12227043
parent cba880e0
......@@ -423,6 +423,7 @@ _rshlv(Vlong *r, Vlong a, int b)
r->lo = (t << (32-b)) | (a.lo >> b);
}
#pragma textflag 7
void
_lshv(Vlong *r, Vlong a, int b)
{
......
......@@ -421,6 +421,7 @@ _rshlv(Vlong *r, Vlong a, int b)
r->lo = (t << (32-b)) | (a.lo >> b);
}
#pragma textflag 7
void
_lshv(Vlong *r, Vlong a, int b)
{
......
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