From 0627248a1f13daf5df197560308f5497cf9fd8a8 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Wed, 12 Jun 2013 15:05:10 -0700 Subject: [PATCH] =?utf8?q?runtime:=20update=20runtime=C2=B7gogo=20comment?= =?utf8?q?=20in=20asm=20files?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit R=golang-dev, minux.ma CC=golang-dev https://golang.org/cl/10244043 --- src/pkg/runtime/asm_386.s | 2 +- src/pkg/runtime/asm_amd64.s | 2 +- src/pkg/runtime/asm_arm.s | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/pkg/runtime/asm_386.s b/src/pkg/runtime/asm_386.s index 2aa1a2d0e4..89db413704 100644 --- a/src/pkg/runtime/asm_386.s +++ b/src/pkg/runtime/asm_386.s @@ -141,7 +141,7 @@ TEXT runtime·gosave(SB), 7, $0 MOVL BX, gobuf_g(AX) RET -// void gogo(Gobuf*, uintptr) +// void gogo(Gobuf*) // restore state from Gobuf; longjmp TEXT runtime·gogo(SB), 7, $0 MOVL 4(SP), BX // gobuf diff --git a/src/pkg/runtime/asm_amd64.s b/src/pkg/runtime/asm_amd64.s index be3ae0d32a..f6919c6d03 100644 --- a/src/pkg/runtime/asm_amd64.s +++ b/src/pkg/runtime/asm_amd64.s @@ -128,7 +128,7 @@ TEXT runtime·gosave(SB), 7, $0 MOVQ BX, gobuf_g(AX) RET -// void gogo(Gobuf*, uintptr) +// void gogo(Gobuf*) // restore state from Gobuf; longjmp TEXT runtime·gogo(SB), 7, $0 MOVQ 8(SP), BX // gobuf diff --git a/src/pkg/runtime/asm_arm.s b/src/pkg/runtime/asm_arm.s index 7d6123c0e5..5442e69ad1 100644 --- a/src/pkg/runtime/asm_arm.s +++ b/src/pkg/runtime/asm_arm.s @@ -108,7 +108,7 @@ TEXT runtime·gosave(SB), 7, $-4 MOVW R11, gobuf_ctxt(R0) RET -// void gogo(Gobuf*, uintptr) +// void gogo(Gobuf*) // restore state from Gobuf; longjmp TEXT runtime·gogo(SB), 7, $-4 MOVW 0(FP), R1 // gobuf -- 2.48.1