Do not emit debug info by default

This basically flips the --noDebug flag to become a --debug flag, so some optimizations, like inlining, aren't skipped by default, which might be unexpected.
This commit is contained in:
dcodeIO
2018-11-09 12:28:10 +01:00
parent d93ca84aed
commit 4f95dce6e2
72 changed files with 6244 additions and 6197 deletions

View File

@ -7,13 +7,10 @@
(export "memory" (memory $0))
(export "table" (table $0))
(export "getValue" (func $named-import-default/getValue))
(func $named-export-default/get3 (; 0 ;) (type $i) (result i32)
(func $named-import-default/getValue (; 0 ;) (type $i) (result i32)
i32.const 3
)
(func $named-import-default/getValue (; 1 ;) (type $i) (result i32)
call $named-export-default/get3
)
(func $null (; 2 ;) (type $v)
(func $null (; 1 ;) (type $v)
nop
)
)