- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for GOMIPS (0.04 sec)
-
doc/asm.html
<ul> <li> <code>16(R1)</code>: The location at <code>R1</code> plus 16. </li> <li> <code>(R1)</code>: Alias for <code>0(R1)</code>. </li> </ul> <p> The value of <code>GOMIPS</code> environment variable (<code>hardfloat</code> or <code>softfloat</code>) is made available to assembly code by predefining either <code>GOMIPS_hardfloat</code> or <code>GOMIPS_softfloat</code>. </p> <p>
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Tue Nov 28 19:15:27 UTC 2023 - 36.3K bytes - Viewed (0) -
src/cmd/cgo/gcc.go
} else if gomips64 == "softfloat" { return []string{"-mabi=64", "-msoft-float"} } case "mips", "mipsle": if gomips == "hardfloat" { return []string{"-mabi=32", "-mfp32", "-mhard-float", "-mno-odd-spreg"} } else if gomips == "softfloat" { return []string{"-mabi=32", "-msoft-float"} } case "loong64": return []string{"-mabi=lp64d"} } return nil }
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Sep 18 15:07:34 UTC 2024 - 97.1K bytes - Viewed (0)