On Tue, Oct 09, 2012 at 09:56:17PM +0200, Aurelien Jarno wrote: > Rename helper flags to the new ones. This is purely a mechanical change, > it's possible to use better flags by looking at the helpers. > > Cc: Edgar E. Iglesias <[email protected]> > Signed-off-by: Aurelien Jarno <[email protected]>
Acked-by: Edgar E. Iglesias <[email protected]> > --- > target-microblaze/helper.h | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/target-microblaze/helper.h b/target-microblaze/helper.h > index a1a732c..6076a1b 100644 > --- a/target-microblaze/helper.h > +++ b/target-microblaze/helper.h > @@ -2,10 +2,10 @@ > > DEF_HELPER_2(raise_exception, void, env, i32) > DEF_HELPER_1(debug, void, env) > -DEF_HELPER_FLAGS_3(carry, TCG_CALL_PURE | TCG_CALL_CONST, i32, i32, i32, i32) > +DEF_HELPER_FLAGS_3(carry, TCG_CALL_NO_RGSE, i32, i32, i32, i32) > DEF_HELPER_2(cmp, i32, i32, i32) > DEF_HELPER_2(cmpu, i32, i32, i32) > -DEF_HELPER_FLAGS_1(clz, TCG_CALL_PURE | TCG_CALL_CONST, i32, i32) > +DEF_HELPER_FLAGS_1(clz, TCG_CALL_NO_RGSE, i32, i32) > > DEF_HELPER_3(divs, i32, env, i32, i32) > DEF_HELPER_3(divu, i32, env, i32, i32) > @@ -26,7 +26,7 @@ DEF_HELPER_3(fcmp_gt, i32, env, i32, i32) > DEF_HELPER_3(fcmp_ne, i32, env, i32, i32) > DEF_HELPER_3(fcmp_ge, i32, env, i32, i32) > > -DEF_HELPER_FLAGS_2(pcmpbf, TCG_CALL_PURE | TCG_CALL_CONST, i32, i32, i32) > +DEF_HELPER_FLAGS_2(pcmpbf, TCG_CALL_NO_RGSE, i32, i32, i32) > #if !defined(CONFIG_USER_ONLY) > DEF_HELPER_2(mmu_read, i32, env, i32) > DEF_HELPER_3(mmu_write, void, env, i32, i32) > -- > 1.7.10.4 >
