Commit ac1d46a2 authored by Robert Griesemer's avatar Robert Griesemer

fix build

R=rsc
CC=golang-dev
https://golang.org/cl/1044041
parent 407dbb42
......@@ -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
......
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