From 843a7ac445cad04e4096c382058749b852273be2 Mon Sep 17 00:00:00 2001 From: Damian Gryski Date: Thu, 18 Nov 2021 11:11:54 -0800 Subject: [PATCH] add asyncify to scheduler flag help --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 0f1d98da..446d3a9c 100644 --- a/main.go +++ b/main.go @@ -1117,7 +1117,7 @@ func main() { opt := flag.String("opt", "z", "optimization level: 0, 1, 2, s, z") gc := flag.String("gc", "", "garbage collector to use (none, leaking, extalloc, conservative)") panicStrategy := flag.String("panic", "print", "panic strategy (print, trap)") - scheduler := flag.String("scheduler", "", "which scheduler to use (none, coroutines, tasks)") + scheduler := flag.String("scheduler", "", "which scheduler to use (none, coroutines, tasks, asyncify)") serial := flag.String("serial", "", "which serial output to use (none, uart, usb)") printIR := flag.Bool("printir", false, "print LLVM IR") dumpSSA := flag.Bool("dumpssa", false, "dump internal Go SSA")