Skip to content

Commit

Permalink
Bump wasmparser to 0.44.0 (#146)
Browse files Browse the repository at this point in the history
  • Loading branch information
fitzgen authored and alexcrichton committed Dec 5, 2019
1 parent 7c1eed3 commit 6a8602c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Expand Up @@ -29,7 +29,7 @@ leb128 = "0.2.4"
log = "0.4.8"
rayon = { version = "1.1.0", optional = true }
walrus-macro = { path = './crates/macro', version = '=0.14.0' }
wasmparser = "0.42.0"
wasmparser = "0.44.0"

[features]
parallel = ['rayon', 'id-arena/rayon']
Expand Down
2 changes: 1 addition & 1 deletion src/module/functions/local_function/mod.rs
Expand Up @@ -1415,7 +1415,7 @@ fn validate_instruction<'context>(

op @ Operator::TableInit { .. }
| op @ Operator::ElemDrop { .. }
| op @ Operator::TableCopy => {
| op @ Operator::TableCopy {.. } => {
bail!("Have not implemented support for opcode yet: {:?}", op)
}
}
Expand Down

0 comments on commit 6a8602c

Please sign in to comment.