From 7a5460ed9b53ac99805e6578cc67da8ef431c577 Mon Sep 17 00:00:00 2001 From: qmuntal Date: Wed, 25 Jan 2023 09:21:06 +0100 Subject: [PATCH] =?utf8?q?runtime:=20mark=20amd64=20runtime=C2=B7rt0=5Fgo?= =?utf8?q?=20as=20NOFRAME?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit This CL adds the NOFRAME flag to runtime·rt0_go, which should had been added in CL 459395 but didn't and broke fix windows-amd64-2008. Change-Id: I4583f2034bf114e1f7aaddef9ba505f53536c3eb Reviewed-on: https://go-review.googlesource.com/c/go/+/463120 Run-TryBot: Quim Muntal Reviewed-by: Bryan Mills Auto-Submit: Quim Muntal TryBot-Result: Gopher Robot Reviewed-by: Cherry Mui --- src/runtime/asm_amd64.s | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime/asm_amd64.s b/src/runtime/asm_amd64.s index 6720c20f15..f5a83f2b88 100644 --- a/src/runtime/asm_amd64.s +++ b/src/runtime/asm_amd64.s @@ -156,7 +156,7 @@ GLOBL bad_cpu_msg<>(SB), RODATA, $84 #endif -TEXT runtime·rt0_go(SB),NOSPLIT|TOPFRAME,$0 +TEXT runtime·rt0_go(SB),NOSPLIT|NOFRAME|TOPFRAME,$0 // copy arguments forward on an even stack MOVQ DI, AX // argc MOVQ SI, BX // argv -- 2.48.1