From: Kenneth Graunke Date: Sun, 25 May 2014 08:08:51 +0000 (-0700) Subject: i965/sf: Drop useless push/pop state from flag register mashing code. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=41afb3ade46c9a10c7a1e61df55c7b51281b0247;p=mesa.git i965/sf: Drop useless push/pop state from flag register mashing code. There's no point in pushing and popping the default state; the code between the two stack operations doesn't alter anything. Signed-off-by: Kenneth Graunke Reviewed-by: Matt Turner --- diff --git a/src/mesa/drivers/dri/i965/brw_eu.c b/src/mesa/drivers/dri/i965/brw_eu.c index 95bffc4bb0b..e854a79ad8a 100644 --- a/src/mesa/drivers/dri/i965/brw_eu.c +++ b/src/mesa/drivers/dri/i965/brw_eu.c @@ -98,10 +98,8 @@ void brw_set_predicate_control_flag_value( struct brw_compile *p, unsigned value if (value != 0xff) { if (value != p->flag_value) { - brw_push_insn_state(p); brw_MOV(p, brw_flag_reg(0, 0), brw_imm_uw(value)); p->flag_value = value; - brw_pop_insn_state(p); } p->current->header.predicate_control = BRW_PREDICATE_NORMAL;