From: qmuntal Date: Wed, 25 Jan 2023 08:21:06 +0000 (+0100) Subject: runtime: mark amd64 runtime·rt0_go as NOFRAME X-Git-Tag: go1.21rc1~1801 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=7a5460ed9b53ac99805e6578cc67da8ef431c577;p=gostls13.git runtime: mark amd64 runtime·rt0_go as NOFRAME 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 --- 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