Update for wasm memory instruction renaming.

The wasm spec renamed `grow_memory` and `current_memory` to
`memory.grow` and `memory.size`, respectively. Update cretonne's names
to follow.

Also, update to wasmparser 0.17.0, which also renames its corresponding
operators.
This commit is contained in:
Dan Gohman
2018-06-07 17:01:41 -07:00
parent 0daa560368
commit c03d67a4ff
4 changed files with 12 additions and 12 deletions

View File

@@ -9,7 +9,7 @@ readme = "README.md"
keywords = ["webassembly", "wasm"]
[dependencies]
wasmparser = { version = "0.16.1", default-features = false }
wasmparser = { version = "0.17.0", default-features = false }
cretonne-codegen = { path = "../codegen", version = "0.9.0", default-features = false }
cretonne-frontend = { path = "../frontend", version = "0.9.0", default-features = false }
hashmap_core = { version = "0.1.6", optional = true }