There was an error while loading. Please reload this page.
1 parent 072e2b7 commit b8029d5Copy full SHA for b8029d5
1 file changed
crates/wasmi/src/engine/translator/func2/mod.rs
@@ -894,7 +894,7 @@ impl FuncTranslator {
894
let Operand::Temp(condition) = condition else {
895
return Ok(false);
896
};
897
- debug_assert_eq!(condition.ty(), ValType::I32);
+ debug_assert!(matches!(condition.ty(), ValType::I32 | ValType::I64));
898
let Some(origin) = condition.instr() else {
899
900
0 commit comments