]> Cypherpunks repositories - gostls13.git/commitdiff
runtime: mark arm _lsvh nosplit (may fix arm build)
authorRuss Cox <rsc@golang.org>
Thu, 1 Aug 2013 04:23:30 +0000 (00:23 -0400)
committerRuss Cox <rsc@golang.org>
Thu, 1 Aug 2013 04:23:30 +0000 (00:23 -0400)
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

src/pkg/runtime/vlrt_386.c
src/pkg/runtime/vlrt_arm.c

index 1631dbe1080d4796f13ad0d225b9a601e3907a78..78e3f02a17f6c4a94286e83a8022ae4bcb9e8527 100644 (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)
 {
index 11813f91c422b908d644fc66f90c0a94aa6d45a0..b58c5fbc0ee4403e7094629467a258300999ad82 100644 (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)
 {