Skip to content

Commit 84f8bcd

Browse files
committed
Fix i_instr_binary_f32 trying to call the wrong concrete instructions
1 parent 6983d67 commit 84f8bcd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Interpreter/concolic_interpreter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -696,7 +696,7 @@ bool ConcolicInterpreter::i_instr_binary_i64(Module *m, uint8_t opcode) {
696696

697697
bool ConcolicInterpreter::i_instr_binary_f32(Module *m, uint8_t opcode) {
698698
int original_sp = m->sp;
699-
Interpreter::i_instr_binary_i64(m, opcode);
699+
Interpreter::i_instr_binary_f32(m, opcode);
700700
m->sp = original_sp;
701701

702702
z3::expr a = m->symbolic_stack[m->sp - 1].value();

0 commit comments

Comments
 (0)