We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cfb3f9c commit ffbd7c8Copy full SHA for ffbd7c8
crates/wasmi/src/engine/executor/handler/eval.rs
@@ -93,7 +93,7 @@ pub fn wasmi_i32_not_or(lhs: i32, rhs: i32) -> bool {
93
}
94
95
pub fn wasmi_i64_and(lhs: i64, rhs: i64) -> bool {
96
- (rhs != 0) && (lhs != 0)
+ (lhs & rhs) != 0
97
98
99
pub fn wasmi_i64_not_and(lhs: i64, rhs: i64) -> bool {
0 commit comments