Print pc bitvector in hex (#4142)
This commit is contained in:
parent
2b0552158f
commit
e1e58430dc
1 changed files with 1 additions and 1 deletions
|
|
@ -27,7 +27,7 @@ static void rz_il_set(RzILVM *vm, const char *var_name, bool is_local, RZ_OWN Rz
|
|||
|
||||
bool rz_il_handler_empty(RzILVM *vm, RzILOpEffect *op) {
|
||||
rz_return_val_if_fail(vm && op, false);
|
||||
char *pc = rz_bv_as_string(vm->pc);
|
||||
char *pc = rz_bv_as_hex_string(vm->pc, true);
|
||||
RZ_LOG_INFO("Encountered an empty instruction at %s\n", pc);
|
||||
free(pc);
|
||||
return true;
|
||||
|
|
|
|||
Loading…
Reference in a new issue