mirror of
https://github.com/fluencelabs/wasmer
synced 2025-06-24 06:01:33 +00:00
404: Update to newer common wasmparser version r=xmclark a=bjfish - versions should match to have matching types in a common parser - the `0.29.2` version matches the current parser version of cranelift-wasm 406: Cleanup some clippy warnings r=xmclark a=bjfish Cleaned up some - long literal lacking separators - unneeded return Co-authored-by: Brandon Fish <brandon.j.fish@gmail.com>
This commit is contained in:
@ -7,7 +7,7 @@ edition = "2018"
|
||||
[dependencies]
|
||||
wasmer-runtime-core = { path = "../runtime-core", version = "0.3.0" }
|
||||
inkwell = { git = "https://github.com/wasmerio/inkwell", branch = "llvm7-0" }
|
||||
wasmparser = "0.28.0"
|
||||
wasmparser = "0.29.2"
|
||||
hashbrown = "0.1.8"
|
||||
smallvec = "0.6.8"
|
||||
goblin = "0.0.20"
|
||||
|
@ -1468,7 +1468,7 @@ fn parse_function(
|
||||
context,
|
||||
&function,
|
||||
-2147483904.0,
|
||||
2147483648.0,
|
||||
2_147_483_648.0,
|
||||
v1,
|
||||
);
|
||||
let res =
|
||||
@ -1482,8 +1482,8 @@ fn parse_function(
|
||||
intrinsics,
|
||||
context,
|
||||
&function,
|
||||
-2147483649.0,
|
||||
2147483648.0,
|
||||
-2_147_483_649.0,
|
||||
2_147_483_648.0,
|
||||
v1,
|
||||
);
|
||||
let res =
|
||||
@ -1503,8 +1503,8 @@ fn parse_function(
|
||||
intrinsics,
|
||||
context,
|
||||
&function,
|
||||
-9223373136366403584.0,
|
||||
9223372036854775808.0,
|
||||
-9_223_373_136_366_403_584.0,
|
||||
9_223_372_036_854_775_808.0,
|
||||
v1,
|
||||
);
|
||||
let res =
|
||||
|
Reference in New Issue
Block a user