diff options
author | Alon Zakai <alonzakai@gmail.com> | 2016-05-19 16:35:32 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2016-05-19 16:35:32 -0700 |
commit | e396635727ca7fd571aa4fd19ba310942767307e (patch) | |
tree | 7b9da5de9331ccc2f6084209e136701a80026138 /src/passes/SimplifyLocals.cpp | |
parent | 1f4d6d05d48cf60f6761525942815a8fefc92313 (diff) | |
parent | 579010855a134a78cab8ed129cbbbe52bd52a380 (diff) | |
download | binaryen-e396635727ca7fd571aa4fd19ba310942767307e.tar.gz binaryen-e396635727ca7fd571aa4fd19ba310942767307e.tar.bz2 binaryen-e396635727ca7fd571aa4fd19ba310942767307e.zip |
Merge pull request #528 from WebAssembly/vacuum-better
Vacuum improvements
Diffstat (limited to 'src/passes/SimplifyLocals.cpp')
-rw-r--r-- | src/passes/SimplifyLocals.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/passes/SimplifyLocals.cpp b/src/passes/SimplifyLocals.cpp index fbd1e7e57..dac6cfa65 100644 --- a/src/passes/SimplifyLocals.cpp +++ b/src/passes/SimplifyLocals.cpp @@ -26,8 +26,7 @@ // removing multiple set_locals and replacing them with one that the // block returns to. Further optimization rounds then have the opportunity // to remove that set_local as well. TODO: support partial traces; right -// now, whenever control flow splits, we invalidate everything. This is -// enough for SSA form, but not otherwise. +// now, whenever control flow splits, we invalidate everything. // // After this pass, some locals may be completely unused. reorder-locals // can get rid of those (the operation is trivial there after it sorts by use |