diff options
author | Ayke van Laethem <[email protected]> | 2018-11-09 16:31:21 +0100 |
---|---|---|
committer | Ayke van Laethem <[email protected]> | 2018-11-16 23:12:32 +0100 |
commit | c3c4a33b4275b6fa28ee79fe6caf2aaaac73c719 (patch) | |
tree | 95c8d99d73bdf52550f1e81fe5330dc3e543645a /main.go | |
parent | 1ba463c7ee979f2a750a44de333880805a79a1f8 (diff) | |
download | tinygo-c3c4a33b4275b6fa28ee79fe6caf2aaaac73c719.tar.gz tinygo-c3c4a33b4275b6fa28ee79fe6caf2aaaac73c719.zip |
main: enable -initinterp by default
It can still be disabled using -initinterp=false.
Diffstat (limited to 'main.go')
-rw-r--r-- | main.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -438,7 +438,7 @@ func main() { printSize := flag.String("size", "", "print sizes (none, short, full)") nodebug := flag.Bool("no-debug", false, "disable DWARF debug symbol generation") ocdOutput := flag.Bool("ocd-output", false, "print OCD daemon output during debug") - initInterp := flag.Bool("initinterp", false, "enable experimental partial evaluator of generated IR") + initInterp := flag.Bool("initinterp", true, "enable/disable partial evaluator of generated IR") port := flag.String("port", "/dev/ttyACM0", "flash port") if len(os.Args) < 2 { |