Fix small clang build issue.

This commit is contained in:
David Guillen Fandos 2019-05-13 01:35:40 +02:00
parent 65e2218792
commit 3463872fdf
1 changed files with 1 additions and 1 deletions

View File

@ -1442,7 +1442,7 @@ void ngen_CC_Finish(shil_opcode* op)
bool ngen_Rewrite(unat& host_pc, unat, unat)
{
//printf("ngen_Rewrite pc %p\n", host_pc);
void *host_pc_rw = CC_RX2RW(host_pc);
void *host_pc_rw = (void*)CC_RX2RW(host_pc);
RuntimeBlockInfo *block = bm_GetBlock((void*)host_pc);
if (block == NULL)
{