compiler: fix 64-bit sin and cos on AVR

This commit is contained in:
Jake Bailey
2026-07-31 15:48:52 -07:00
committed by Ron Evans
parent 5cf455248f
commit 21718dc59b
2 changed files with 15 additions and 4 deletions
+4 -4
View File
@@ -370,10 +370,6 @@ func runPlatTests(options compileopts.Options, tests []string, t *testing.T) {
// Too big for AVR. Doesn't fit in flash/RAM.
continue
case "math.go":
// LLVM fails to lower one of the required library calls.
continue
case "cgo/":
// CGo function pointers don't work on AVR (needs LLVM 16 and
// some compiler changes).
@@ -432,6 +428,10 @@ func runPlatTests(options compileopts.Options, tests []string, t *testing.T) {
if name == "finalizerinvariants.go" || name == "finalizerlarge.go" {
testOptions.Tags = append(append([]string(nil), options.Tags...), "runtime_asserts")
}
if testOptions.Target == "simavr" && name == "math.go" {
// This test exceeds simavr's default 384-byte goroutine stack.
testOptions.StackSize = 512
}
runTest(name, testOptions, t, nil, nil)
})
}