Commit cefdb9c2 authored by Russ Cox's avatar Russ Cox

runtime: fix windows build

TBR=golang-dev
CC=golang-dev
https://golang.org/cl/11595045
parent f652bc4a
......@@ -534,7 +534,7 @@ TEXT runtime·cgocallback_gofunc(SB),7,$8-12
#ifdef GOOS_windows
MOVL $0, BP
CMPL CX, $0
JNE 2(PC)
JEQ 2(PC)
#endif
MOVL m(CX), BP
MOVL BP, 4(SP)
......
......@@ -573,7 +573,7 @@ TEXT runtime·cgocallback_gofunc(SB),7,$16-24
#ifdef GOOS_windows
MOVL $0, BP
CMPQ CX, $0
JNE 2(PC)
JEQ 2(PC)
#endif
MOVQ m(CX), BP
MOVQ BP, 8(SP)
......
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