diff --git a/target-i386/helper.c b/target-i386/helper.c index e2f6fba2efb34f11be2d620559cee263a9016e61..6939cb76c1e4f6b4826ec731d393919c82a2290f 100644 --- a/target-i386/helper.c +++ b/target-i386/helper.c @@ -1732,11 +1732,11 @@ void helper_lcall_real_T0_T1(int shift, int next_eip) /* protected mode call */ void helper_lcall_protected_T0_T1(int shift, int next_eip_addend) { - int new_cs, new_eip, new_stack, i; + int new_cs, new_stack, i; uint32_t e1, e2, cpl, dpl, rpl, selector, offset, param_count; uint32_t ss, ss_e1, ss_e2, sp, type, ss_dpl, sp_mask; uint32_t val, limit, old_sp_mask; - target_ulong ssp, old_ssp, next_eip; + target_ulong ssp, old_ssp, next_eip, new_eip; new_cs = T0; new_eip = T1; @@ -1744,7 +1744,7 @@ void helper_lcall_protected_T0_T1(int shift, int next_eip_addend) #ifdef DEBUG_PCALL if (loglevel & CPU_LOG_PCALL) { fprintf(logfile, "lcall %04x:%08x s=%d\n", - new_cs, new_eip, shift); + new_cs, (uint32_t)new_eip, shift); cpu_dump_state(env, logfile, fprintf, X86_DUMP_CCOP); } #endif