mirror of
https://github.com/i-net-software/JWebAssembly.git
synced 2025-03-25 07:27:52 +01:00
add i64.eq
This commit is contained in:
parent
579288d663
commit
d58c75e0ed
@ -113,6 +113,9 @@ public class WatParser extends WasmCodeBuilder {
|
|||||||
case "i64.const":
|
case "i64.const":
|
||||||
addConstInstruction( Long.parseLong( get( tokens, ++i ) ), ValueType.i64, javaCodePos, lineNumber );
|
addConstInstruction( Long.parseLong( get( tokens, ++i ) ), ValueType.i64, javaCodePos, lineNumber );
|
||||||
break;
|
break;
|
||||||
|
case "i64.eq":
|
||||||
|
addNumericInstruction( NumericOperator.eq, ValueType.i64, javaCodePos, lineNumber );
|
||||||
|
break;
|
||||||
case "i64.div_s":
|
case "i64.div_s":
|
||||||
addNumericInstruction( NumericOperator.div, ValueType.i64, javaCodePos, lineNumber );
|
addNumericInstruction( NumericOperator.div, ValueType.i64, javaCodePos, lineNumber );
|
||||||
break;
|
break;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user