diff options
author | Alon Zakai <alonzakai@gmail.com> | 2017-07-18 11:22:08 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-18 11:22:08 -0700 |
commit | 0b2122d49a28f199ef7fde247e7e7a14829fa96e (patch) | |
tree | def77ee01192fd27fca6cec61fa82c4525873ddf /src/passes/Vacuum.cpp | |
parent | 275c5ebafdf2860edb965d322bdad4c3e3717bea (diff) | |
parent | 2daf000f471afdcf21f784f83440bb4bdc1a9de9 (diff) | |
download | binaryen-0b2122d49a28f199ef7fde247e7e7a14829fa96e.tar.gz binaryen-0b2122d49a28f199ef7fde247e7e7a14829fa96e.tar.bz2 binaryen-0b2122d49a28f199ef7fde247e7e7a14829fa96e.zip |
Merge pull request #1100 from WebAssembly/fuzz-4
Yet more fuzz fixes
Diffstat (limited to 'src/passes/Vacuum.cpp')
-rw-r--r-- | src/passes/Vacuum.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/passes/Vacuum.cpp b/src/passes/Vacuum.cpp index 3f27fb36a..bb6c7c296 100644 --- a/src/passes/Vacuum.cpp +++ b/src/passes/Vacuum.cpp @@ -225,6 +225,7 @@ struct Vacuum : public WalkerPass<PostWalker<Vacuum>> { child = curr->ifFalse; typeUpdater.noteRecursiveRemoval(curr->ifTrue); } else { + typeUpdater.noteRecursiveRemoval(curr); ExpressionManipulator::nop(curr); return; } |