From: Eric Anholt Date: Thu, 14 Oct 2010 02:21:32 +0000 (-0700) Subject: i965: Set class_sizes[] for the aligned reg pair class. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0c6752026c405dc3ab5fe85c6a40ac3f04c685c3;p=mesa.git i965: Set class_sizes[] for the aligned reg pair class. So far, I've only seen this be a valgrind warning and not a real failure. --- diff --git a/src/mesa/drivers/dri/i965/brw_fs.cpp b/src/mesa/drivers/dri/i965/brw_fs.cpp index 7119f971f82..c0fee114a86 100644 --- a/src/mesa/drivers/dri/i965/brw_fs.cpp +++ b/src/mesa/drivers/dri/i965/brw_fs.cpp @@ -2237,6 +2237,7 @@ fs_visitor::assign_regs() aligned_pair_class = class_count; classes[aligned_pair_class] = ra_alloc_reg_class(regs); + class_sizes[aligned_pair_class] = 2; class_base_reg[aligned_pair_class] = 0; class_reg_count[aligned_pair_class] = 0; int start = (this->first_non_payload_grf & 1) ? 1 : 0;