runtime: use correct register in darwin/386 pipe_trampoline

Updates #31264

Change-Id: I745744dd3fdaa432d70e8dc9336547017bac89ee
Reviewed-on: https://go-review.googlesource.com/c/go/+/184377
Run-TryBot: Ian Lance Taylor <iant@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Elias Naur <mail@eliasnaur.com>
diff --git a/src/runtime/sys_darwin_386.s b/src/runtime/sys_darwin_386.s
index ac5f4e4..e653c54 100644
--- a/src/runtime/sys_darwin_386.s
+++ b/src/runtime/sys_darwin_386.s
@@ -88,7 +88,7 @@
 	PUSHL	BP
 	MOVL	SP, BP
 	SUBL	$8, SP
-	MOVL	16(SP), CX		// arg 1 pipefd
+	MOVL	16(SP), AX		// arg 1 pipefd
 	MOVL	AX, 0(SP)
 	CALL	libc_pipe(SB)
 	TESTL	AX, AX