wasm: Clear tables too in TranslationState::clear(); (#491)

This commit is contained in:
Benjamin Bouvier
2018-08-30 18:01:07 +02:00
committed by Dan Gohman
parent 67b7a8594a
commit 300a76469f

View File

@@ -175,6 +175,7 @@ impl TranslationState {
self.reachable = true;
self.globals.clear();
self.heaps.clear();
self.tables.clear();
self.signatures.clear();
self.functions.clear();
}