1
0
mirror of https://github.com/golang/go synced 2024-11-22 00:04:41 -07:00

fix build

R=rsc
CC=golang-dev
https://golang.org/cl/1044041
This commit is contained in:
Robert Griesemer 2010-04-30 12:01:15 -07:00
parent 407dbb42d4
commit ac1d46a22a

View File

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