aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/os_linux_s390x.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/os_linux_s390x.go')
-rw-r--r--src/runtime/os_linux_s390x.go9
1 files changed, 2 insertions, 7 deletions
diff --git a/src/runtime/os_linux_s390x.go b/src/runtime/os_linux_s390x.go
index ee18fd1dc2..b9651f186c 100644
--- a/src/runtime/os_linux_s390x.go
+++ b/src/runtime/os_linux_s390x.go
@@ -6,15 +6,10 @@ package runtime
import "internal/cpu"
-const (
- // bit masks taken from bits/hwcap.h
- _HWCAP_S390_VX = 2048 // vector facility
-)
-
func archauxv(tag, val uintptr) {
switch tag {
- case _AT_HWCAP: // CPU capability bit flags
- cpu.S390X.HasVX = val&_HWCAP_S390_VX != 0
+ case _AT_HWCAP:
+ cpu.HWCap = uint(val)
}
}