internal/task: fix two missed instances of extalloc

This commit is contained in:
Damian Gryski
2021-12-17 13:56:32 -08:00
committed by Nia
parent 747336f0a9
commit 38b14706e2
2 changed files with 4 additions and 6 deletions
+2 -4
View File
@@ -1,7 +1,5 @@
//go:build (gc.conservative || gc.extalloc) && tinygo.wasm && !scheduler.coroutines
// +build gc.conservative gc.extalloc
// +build tinygo.wasm
// +build !scheduler.coroutines
//go:build gc.conservative && tinygo.wasm && !scheduler.coroutines
// +build gc.conservative,tinygo.wasm,!scheduler.coroutines
package task
+2 -2
View File
@@ -1,5 +1,5 @@
//go:build (!gc.conservative && !gc.extalloc) || !tinygo.wasm || scheduler.coroutines
// +build !gc.conservative,!gc.extalloc !tinygo.wasm scheduler.coroutines
//go:build !gc.conservative || !tinygo.wasm || scheduler.coroutines
// +build !gc.conservative !tinygo.wasm scheduler.coroutines
package task