Skip to content

Commit

Permalink
A32: record dispatcher linking for uncond_imm_arm
Browse files Browse the repository at this point in the history
  • Loading branch information
lgeek committed Aug 2, 2017
1 parent a8c61c4 commit 8015836
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dispatcher.c
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ void dispatcher(uintptr_t target, uint32_t source_index, uintptr_t *next_addr, d

case uncond_imm_arm:
branch_addr = thread_data->code_cache_meta[source_index].exit_branch_addr;
arm_b32_helper((uint32_t *)branch_addr, (uint32_t)block_address, AL);
arm_cc_branch(thread_data, (uint32_t *)branch_addr, (uint32_t)block_address, AL);
__clear_cache(branch_addr, (char *)branch_addr+5);
break;
#endif
Expand Down

0 comments on commit 8015836

Please sign in to comment.