diff options
| author | Neal Patel <nealpatel@google.com> | 2025-11-20 22:28:41 +0000 |
|---|---|---|
| committer | David Chase <drchase@google.com> | 2025-11-21 11:07:17 -0800 |
| commit | d3a0321dbad4c2f60bede3bd033b26a5a4839c53 (patch) | |
| tree | 68e34d8e78d2fb2e6a1427f298905c7e5101825a /src/simd | |
| parent | 74ebdd28d10f93fbcb58708c76b5805bc6c114a3 (diff) | |
| download | go-d3a0321dbad4c2f60bede3bd033b26a5a4839c53.tar.xz | |
[dev.simd] cmd/compile: fix incorrect mapping of SHA256MSG2128
Change-Id: Iff00fdb5cfc83c546ad564fa7618ec34d0352fdc
Reviewed-on: https://go-review.googlesource.com/c/go/+/722640
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Junyang Shao <shaojunyang@google.com>
Reviewed-by: David Chase <drchase@google.com>
Diffstat (limited to 'src/simd')
| -rw-r--r-- | src/simd/_gen/simdgen/ops/Others/go.yaml | 4 | ||||
| -rw-r--r-- | src/simd/ops_amd64.go | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/simd/_gen/simdgen/ops/Others/go.yaml b/src/simd/_gen/simdgen/ops/Others/go.yaml index c098d28968..6099ce4a10 100644 --- a/src/simd/_gen/simdgen/ops/Others/go.yaml +++ b/src/simd/_gen/simdgen/ops/Others/go.yaml @@ -93,6 +93,6 @@ in: *2uint out: *1uint - go: SHA256Message2 - asm: SHA256MSG1 + asm: SHA256MSG2 in: *2uint - out: *1uint
\ No newline at end of file + out: *1uint diff --git a/src/simd/ops_amd64.go b/src/simd/ops_amd64.go index 8acf3e897c..2be59cf485 100644 --- a/src/simd/ops_amd64.go +++ b/src/simd/ops_amd64.go @@ -5549,7 +5549,7 @@ func (x Uint32x4) SHA256Message1(y Uint32x4) Uint32x4 // y = {0, 0, W14, W15} // result = {W16, W17, W18, W19} // -// Asm: SHA256MSG1, CPU Feature: SHA +// Asm: SHA256MSG2, CPU Feature: SHA func (x Uint32x4) SHA256Message2(y Uint32x4) Uint32x4 /* SHA256TwoRounds */ |
