1
0
mirror of https://github.com/golang/go synced 2024-11-18 06:24:47 -07:00

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
This commit is contained in:
Russ Cox 2013-08-01 00:23:30 -04:00
parent cba880e04a
commit f4f2cf16b0
2 changed files with 2 additions and 0 deletions

View File

@ -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)
{

View File

@ -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)
{