Matt Turner <matts...@gmail.com> writes:

> ---
>  src/mesa/drivers/dri/i965/brw_shader.cpp | 4 ++++
>  1 file changed, 4 insertions(+)
>
> diff --git a/src/mesa/drivers/dri/i965/brw_shader.cpp 
> b/src/mesa/drivers/dri/i965/brw_shader.cpp
> index dfe6afc..d007ed0 100644
> --- a/src/mesa/drivers/dri/i965/brw_shader.cpp
> +++ b/src/mesa/drivers/dri/i965/brw_shader.cpp
> @@ -948,6 +948,8 @@ adjust_later_block_ips(bblock_t *start_block, int 
> ip_adjustment)
>  void
>  backend_instruction::insert_after(bblock_t *block, backend_instruction *inst)
>  {
> +   assert(this != inst);
> +
>     if (!this->is_head_sentinel())
>        assert(inst_is_in_block(block, this) || !"Instruction not in block");
>  
> @@ -961,6 +963,8 @@ backend_instruction::insert_after(bblock_t *block, 
> backend_instruction *inst)
>  void
>  backend_instruction::insert_before(bblock_t *block, backend_instruction 
> *inst)
>  {
> +   assert(this != inst);
> +
>     if (!this->is_tail_sentinel())
>        assert(inst_is_in_block(block, this) || !"Instruction not in block");
>  

Reviewed-by: Francisco Jerez <curroje...@riseup.net>

> -- 
> 2.4.10
>
> _______________________________________________
> mesa-dev mailing list
> mesa-dev@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/mesa-dev

Attachment: signature.asc
Description: PGP signature

_______________________________________________
mesa-dev mailing list
mesa-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/mesa-dev

Reply via email to