@@ -2897,7 +2897,7 @@ static void emit_rol_r64_p64(drcbe_state *drcbe, x86code **dst, UINT8 reglo, UIN
28972897 {
28982898 emit_link skip1 , skip2 ;
28992899 int tempreg = REG_EAX ;
2900- // emit_mov_m32_r32(dst, MBD(REG_ESP, -8), tempreg); // mov [esp-8],ebx
2900+ // emit_mov_m32_r32(dst, MBD(REG_ESP, -8), tempreg); // mov [esp-8],ebx
29012901 emit_mov_r32_p32 (drcbe , dst , REG_ECX , param ); // mov ecx,param
29022902 emit_test_r32_imm (dst , REG_ECX , 0x20 ); // test ecx,0x20
29032903 emit_jcc_short_link (dst , COND_Z , & skip1 ); // jz skip1
@@ -2922,7 +2922,7 @@ static void emit_rol_r64_p64(drcbe_state *drcbe, x86code **dst, UINT8 reglo, UIN
29222922 emit_shld_r32_r32_cl (dst , reglo , reghi ); // shld reglo,reghi,cl
29232923 if (saveflags ) emit_pushf (dst ); // pushf
29242924 emit_shld_r32_r32_cl (dst , reghi , tempreg ); // shld reghi,ebx,cl
2925- // emit_mov_r32_m32(dst, tempreg, MBD(REG_ESP, saveflags ? -4 : -8)); // mov ebx,[esp-8]
2925+ // emit_mov_r32_m32(dst, tempreg, MBD(REG_ESP, saveflags ? -4 : -8)); // mov ebx,[esp-8]
29262926 }
29272927 if (saveflags )
29282928 emit_combine_z_flags (dst );
@@ -2972,7 +2972,7 @@ static void emit_ror_r64_p64(drcbe_state *drcbe, x86code **dst, UINT8 reglo, UIN
29722972 {
29732973 emit_link skip1 , skip2 ;
29742974 int tempreg = REG_EAX ;
2975- // emit_mov_m32_r32(dst, MBD(REG_ESP, -8), tempreg); // mov [esp-8],ebx
2975+ // emit_mov_m32_r32(dst, MBD(REG_ESP, -8), tempreg); // mov [esp-8],ebx
29762976 emit_mov_r32_p32 (drcbe , dst , REG_ECX , param ); // mov ecx,param
29772977 emit_test_r32_imm (dst , REG_ECX , 0x20 ); // test ecx,0x20
29782978 emit_jcc_short_link (dst , COND_Z , & skip1 ); // jz skip1
@@ -2997,7 +2997,7 @@ static void emit_ror_r64_p64(drcbe_state *drcbe, x86code **dst, UINT8 reglo, UIN
29972997 emit_shrd_r32_r32_cl (dst , reglo , reghi ); // shrd reglo,reghi,cl
29982998 if (saveflags ) emit_pushf (dst ); // pushf
29992999 emit_shrd_r32_r32_cl (dst , reghi , tempreg ); // shrd reghi,ebx,cl
3000- // emit_mov_r32_m32(dst, tempreg, MBD(REG_ESP, saveflags ? -4 : -8)); // mov ebx,[esp-8]
3000+ // emit_mov_r32_m32(dst, tempreg, MBD(REG_ESP, saveflags ? -4 : -8)); // mov ebx,[esp-8]
30013001 }
30023002 if (saveflags )
30033003 emit_combine_z_flags (dst );
0 commit comments