diff options
author | Alon Zakai <azakai@google.com> | 2019-07-31 17:41:06 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-31 17:41:06 -0700 |
commit | cbcca4cf42690514c04fce958675dcc05c1e86e3 (patch) | |
tree | d556bc2352f671eb54d6ec46c37d6a2f7392ac3c /src | |
parent | 692f4666fd116fb7827b53348978f29bba253d47 (diff) | |
download | binaryen-cbcca4cf42690514c04fce958675dcc05c1e86e3.tar.gz binaryen-cbcca4cf42690514c04fce958675dcc05c1e86e3.tar.bz2 binaryen-cbcca4cf42690514c04fce958675dcc05c1e86e3.zip |
Python3-ify check.py and auto_update_tests.py (#2270)
I fixed flatten.bin.txt which seems to have just had some corrupted data, and I removed some fancy unicode from the spec comments tests, which I'm not sure it's important enough to figure out how to fix.
Fixes #1691
Diffstat (limited to 'src')
-rw-r--r-- | src/passes/Asyncify.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/passes/Asyncify.cpp b/src/passes/Asyncify.cpp index 7d6dd9f76..361976fc3 100644 --- a/src/passes/Asyncify.cpp +++ b/src/passes/Asyncify.cpp @@ -230,6 +230,10 @@ // will be instrumented. Like the blacklist, getting this wrong will // break your application. // +// TODO When wasm has GC, extending the live ranges of locals can keep things +// alive unnecessarily. We may want to set locals to null at the end +// of their original range. +// #include "ir/effects.h" #include "ir/literal-utils.h" |