chore: fix formatting

This commit is contained in:
2025-01-30 10:10:42 +03:00
parent 4463a32ae7
commit d201aae6e0
19 changed files with 253 additions and 147 deletions

View File

@ -38,11 +38,12 @@ func armVariant() string {
return armEnv
}
if cpu.ARM.HasVFPv3 {
switch {
case cpu.ARM.HasVFPv3:
return "arm7"
} else if cpu.ARM.HasVFP {
case cpu.ARM.HasVFP:
return "arm6"
} else {
default:
return "arm5"
}
}