From: Brian Paul Date: Wed, 21 Apr 2010 23:58:26 +0000 (-0600) Subject: gallivm: fix copy&paste error: s/cont_stack_size/break_stack_size/ X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=bba6a196bb69afc72a9ec56740a312987e77afc2;p=mesa.git gallivm: fix copy&paste error: s/cont_stack_size/break_stack_size/ --- diff --git a/src/gallium/auxiliary/gallivm/lp_bld_tgsi_soa.c b/src/gallium/auxiliary/gallivm/lp_bld_tgsi_soa.c index 4cfe6015d9b..f70e96dfde8 100644 --- a/src/gallium/auxiliary/gallivm/lp_bld_tgsi_soa.c +++ b/src/gallium/auxiliary/gallivm/lp_bld_tgsi_soa.c @@ -227,7 +227,7 @@ static void lp_exec_bgnloop(struct lp_exec_mask *mask) if (mask->cont_stack_size == 0) mask->cont_mask = LLVMConstAllOnes(mask->int_vec_type); - if (mask->cont_stack_size == 0) + if (mask->break_stack_size == 0) mask->break_mask = LLVMConstAllOnes(mask->int_vec_type); if (mask->cond_stack_size == 0) mask->cond_mask = LLVMConstAllOnes(mask->int_vec_type);