From b0dfcb74651b82123746273bbf6bb9988cd96e18 Mon Sep 17 00:00:00 2001 From: Michael Pratt Date: Thu, 23 Mar 2023 14:18:19 -0400 Subject: all: replace leading spaces with tabs in assembly Most of these are one-off mistakes. Only one file was all spaces. Change-Id: I277c3ce4a4811aa4248c90676f66bc775ae8d062 Reviewed-on: https://go-review.googlesource.com/c/go/+/478976 Run-TryBot: Michael Pratt TryBot-Result: Gopher Robot Reviewed-by: Cherry Mui --- src/runtime/sys_windows_amd64.s | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/runtime/sys_windows_amd64.s') diff --git a/src/runtime/sys_windows_amd64.s b/src/runtime/sys_windows_amd64.s index 367cb2ba76..ecbe8d3329 100644 --- a/src/runtime/sys_windows_amd64.s +++ b/src/runtime/sys_windows_amd64.s @@ -151,15 +151,15 @@ TEXT runtimeĀ·callbackasm1(SB),NOSPLIT|NOFRAME,$0 // In any case, even if function has 0,1,2,3,4 args, there is reserved // but uninitialized "shadow space" for the first 4 args. // The values are in registers. - MOVQ CX, (16+0)(SP) - MOVQ DX, (16+8)(SP) - MOVQ R8, (16+16)(SP) - MOVQ R9, (16+24)(SP) + MOVQ CX, (16+0)(SP) + MOVQ DX, (16+8)(SP) + MOVQ R8, (16+16)(SP) + MOVQ R9, (16+24)(SP) // R8 = address of args vector LEAQ (16+0)(SP), R8 // remove return address from stack, we are not returning to callbackasm, but to its caller. - MOVQ 0(SP), AX + MOVQ 0(SP), AX ADDQ $8, SP // determine index into runtimeĀ·cbs table -- cgit v1.3