mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-04 11:07:46 +00:00
internal/task: fix two missed instances of extalloc
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user