aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Griesemer <gri@golang.org>2010-04-30 12:01:15 -0700
committerRobert Griesemer <gri@golang.org>2010-04-30 12:01:15 -0700
commitac1d46a22aa00fb5f4ba3bc3a4ae85bfb49214b8 (patch)
tree1eb3e51614976e36e7d19268f989ed06fd2b5980
parent407dbb42d40374ac4a9ecd54a5f8f13ee5d165d4 (diff)
downloadgo-ac1d46a22aa00fb5f4ba3bc3a4ae85bfb49214b8.tar.gz
go-ac1d46a22aa00fb5f4ba3bc3a4ae85bfb49214b8.zip
fix build
R=rsc CC=golang-dev https://golang.org/cl/1044041
-rw-r--r--src/pkg/big/arith_386.s6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/pkg/big/arith_386.s b/src/pkg/big/arith_386.s
index 2887ccc3e5..4ccf217ed2 100644
--- a/src/pkg/big/arith_386.s
+++ b/src/pkg/big/arith_386.s
@@ -101,6 +101,9 @@ E4: CMPL BX, BP // i < n
// func shlVW(z, x *Word, s Word, n int) (c Word)
TEXT ·shlVW(SB),7,$0
+ NOP
+ JMP ·shlVW_g(SB) // TODO(gri) remove once code below works
+
MOVL z+0(FP), DI
MOVL x+4(FP), SI
MOVL s+8(FP), CX
@@ -126,6 +129,9 @@ E8: CMPL BX, BP // i < n
// func shrVW(z, x *Word, s Word, n int) (c Word)
TEXT ·shrVW(SB),7,$0
+ NOP
+ JMP ·shrVW_g(SB) // TODO(gri) remove once code below works
+
MOVL z+0(FP), DI
MOVL x+4(FP), SI
MOVL s+8(FP), CX