Update wasm-tools dependencies

Brings in fixes for some assorted wast issues.
This commit is contained in:
Alex Crichton
2020-11-09 07:03:36 -08:00
committed by Andrew Brown
parent 5df5bbbdca
commit 8dd091219a
18 changed files with 48 additions and 48 deletions

View File

@@ -223,7 +223,7 @@ fn predict_rss(wasm: &[u8]) -> Result<usize> {
for entry in s {
let initial = match entry? {
MemoryType::M32 { limits, .. } => limits.initial as usize,
MemoryType::M64 { limits } => limits.initial as usize,
MemoryType::M64 { limits, .. } => limits.initial as usize,
};
prediction += initial * 64 * 1024;
}