Rename BinaryImm format to BinaryImm64

This commit is contained in:
Andrew Brown
2020-05-27 09:32:59 -07:00
parent a27a079d65
commit 0dd77d36f8
14 changed files with 54 additions and 54 deletions

View File

@@ -163,7 +163,7 @@ impl Interpreter {
Ok(Continue)
}
BinaryImm { opcode, arg, imm } => {
BinaryImm64 { opcode, arg, imm } => {
let imm = DataValue::from_integer(*imm, type_of(*arg, frame.function))?;
let arg = frame.get(&arg);
let result = match opcode {