There was an error while loading. Please reload this page.
1 parent 8fe886c commit a5ab54fCopy full SHA for a5ab54f
1 file changed
crates/wasmi/src/engine/translator/utils.rs
@@ -61,7 +61,7 @@ pub trait WasmInteger:
61
fn is_zero(self) -> bool;
62
63
/// Returns the wrapped negated `self`.
64
- #[cfg(feature = "experimental-translator")]
+ #[cfg(feature = "experimental-translator")] // TODO: remove
65
fn wrapping_neg(self) -> Self;
66
}
67
@@ -79,7 +79,7 @@ macro_rules! impl_wasm_integer {
79
self == 0
80
81
82
83
fn wrapping_neg(self) -> Self {
84
Self::wrapping_neg(self)
85
0 commit comments