From 8cd6aacf81ad0a759ac895bce0b569b47aa4201c Mon Sep 17 00:00:00 2001 From: cia-rana Date: Sat, 9 Apr 2022 15:37:11 +0900 Subject: [PATCH] runtime: fix URL in a comment For various reasons Intel has suspended viewing web pages in the .ru domain, so change the domain of the documents cited in the code to the .com domain. In addition, the chapter numbers in the document were updated and fix it. Change-Id: I718be1548ec46f05ebc4f73873d4635c1d5fc76d Reviewed-on: https://go-review.googlesource.com/c/go/+/399060 Reviewed-by: Ian Lance Taylor Run-TryBot: Ian Lance Taylor TryBot-Result: Gopher Robot Reviewed-by: Emmanuel Odeke Auto-Submit: Emmanuel Odeke --- src/runtime/memmove_amd64.s | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/runtime/memmove_amd64.s b/src/runtime/memmove_amd64.s index eeb5033fd9..018bb0b19d 100644 --- a/src/runtime/memmove_amd64.s +++ b/src/runtime/memmove_amd64.s @@ -418,9 +418,9 @@ gobble_mem_fwd_loop: PREFETCHNTA 0x1C0(SI) PREFETCHNTA 0x280(SI) // Prefetch values were chosen empirically. - // Approach for prefetch usage as in 7.6.6 of [1] + // Approach for prefetch usage as in 9.5.6 of [1] // [1] 64-ia-32-architectures-optimization-manual.pdf - // https://www.intel.ru/content/dam/www/public/us/en/documents/manuals/64-ia-32-architectures-optimization-manual.pdf + // https://www.intel.com/content/dam/www/public/us/en/documents/manuals/64-ia-32-architectures-optimization-manual.pdf VMOVDQU (SI), Y0 VMOVDQU 0x20(SI), Y1 VMOVDQU 0x40(SI), Y2 -- 2.50.0