We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5eee7e commit 2dfefb6Copy full SHA for 2dfefb6
cpu/cpu_linux_arm64.go
@@ -110,7 +110,6 @@ func doinit() {
110
ARM64.HasASIMDFHM = isSet(hwCap, hwcap_ASIMDFHM)
111
ARM64.HasDIT = isSet(hwCap, hwcap_DIT)
112
113
-
114
// HWCAP2 feature bits
115
ARM64.HasSVE2 = isSet(hwCap2, hwcap2_SVE2)
116
ARM64.HasI8MM = isSet(hwCap2, hwcap2_I8MM)
unix/syscall_zos_s390x.go
@@ -816,10 +816,10 @@ func Lstat(path string, stat *Stat_t) (err error) {
816
// for checking symlinks begins with $VERSION/ $SYSNAME/ $SYSSYMR/ $SYSSYMA/
817
func isSpecialPath(path []byte) (v bool) {
818
var special = [4][8]byte{
819
- [8]byte{'V', 'E', 'R', 'S', 'I', 'O', 'N', '/'},
820
- [8]byte{'S', 'Y', 'S', 'N', 'A', 'M', 'E', '/'},
821
- [8]byte{'S', 'Y', 'S', 'S', 'Y', 'M', 'R', '/'},
822
- [8]byte{'S', 'Y', 'S', 'S', 'Y', 'M', 'A', '/'}}
+ {'V', 'E', 'R', 'S', 'I', 'O', 'N', '/'},
+ {'S', 'Y', 'S', 'N', 'A', 'M', 'E', '/'},
+ {'S', 'Y', 'S', 'S', 'Y', 'M', 'R', '/'},
+ {'S', 'Y', 'S', 'S', 'Y', 'M', 'A', '/'}}
823
824
var i, j int
825
for i = 0; i < len(special); i++ {
0 commit comments