mirror of
https://github.com/golang/go
synced 2024-11-12 03:50:21 -07:00
runtime: fix missing nacl/386 symbol
syscall.naclWrite was missing from sys_nacl_386.s This gets ./make.bash passing, but doesn't pass validation. I'm not sure if this is the fault of this change, or validation was broken anyway. LGTM=rsc R=minux.ma, rsc CC=golang-codereviews https://golang.org/cl/74510043
This commit is contained in:
parent
b11aeef912
commit
f2037e1533
@ -27,6 +27,17 @@ TEXT runtime·close(SB),NOSPLIT,$0
|
||||
TEXT runtime·read(SB),NOSPLIT,$0
|
||||
NACL_SYSJMP(SYS_read)
|
||||
|
||||
TEXT syscall·naclWrite(SB), NOSPLIT, $12-16
|
||||
MOVL arg1+0(FP), DI
|
||||
MOVL arg2+4(FP), SI
|
||||
MOVL arg3+8(FP), DX
|
||||
MOVL DI, 0(SP)
|
||||
MOVL SI, 4(SP)
|
||||
MOVL DX, 8(SP)
|
||||
CALL runtime·write(SB)
|
||||
MOVL AX, ret+12(FP)
|
||||
RET
|
||||
|
||||
TEXT runtime·write(SB),NOSPLIT,$0
|
||||
NACL_SYSJMP(SYS_write)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user