Commit eae5fc88 authored by Martin Möhrmann's avatar Martin Möhrmann

internal/bytealg: replace use of runtime.support_sse2 with cpu.X86.HasSSE2

This makes the runtime.support_sse2 variable unused
so it is removed in this CL too.

Change-Id: Ia8b9ffee7ac97128179f74ef244b10315e44c234
Reviewed-on: https://go-review.googlesource.com/131455
Run-TryBot: Martin Möhrmann <moehrmann@google.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: default avatarIan Lance Taylor <iant@golang.org>
parent b7d3e14a
...@@ -45,7 +45,7 @@ TEXT cmpbody<>(SB),NOSPLIT,$0-0 ...@@ -45,7 +45,7 @@ TEXT cmpbody<>(SB),NOSPLIT,$0-0
JEQ allsame JEQ allsame
CMPL BP, $4 CMPL BP, $4
JB small JB small
CMPB runtime·support_sse2(SB), $1 CMPB internalcpu·X86+const_offsetX86HasSSE2(SB), $1
JNE mediumloop JNE mediumloop
largeloop: largeloop:
CMPL BP, $16 CMPL BP, $16
......
...@@ -510,7 +510,6 @@ func cpuinit() { ...@@ -510,7 +510,6 @@ func cpuinit() {
// Support cpu feature variables are used in code generated by the compiler // Support cpu feature variables are used in code generated by the compiler
// to guard execution of instructions that can not be assumed to be always supported. // to guard execution of instructions that can not be assumed to be always supported.
support_popcnt = cpu.X86.HasPOPCNT support_popcnt = cpu.X86.HasPOPCNT
support_sse2 = cpu.X86.HasSSE2
support_sse41 = cpu.X86.HasSSE41 support_sse41 = cpu.X86.HasSSE41
arm64_support_atomics = cpu.ARM64.HasATOMICS arm64_support_atomics = cpu.ARM64.HasATOMICS
......
...@@ -847,7 +847,6 @@ var ( ...@@ -847,7 +847,6 @@ var (
// Set in runtime.cpuinit. // Set in runtime.cpuinit.
// TODO: deprecate these; use internal/cpu directly. // TODO: deprecate these; use internal/cpu directly.
support_popcnt bool support_popcnt bool
support_sse2 bool
support_sse41 bool support_sse41 bool
arm64_support_atomics bool arm64_support_atomics bool
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment