i965/vs: Drop the assertion about dst.reg_offset == 0.

Adding the offset is the right thing to do here, and fixes
glsl-vs-mat-add-1.
This commit is contained in:
Eric Anholt 2011-08-05 19:31:53 -07:00
parent e5363c7fd2
commit 814a9bef30

View file

@ -146,7 +146,6 @@ vec4_instruction::get_dst(void)
switch (dst.file) {
case GRF:
assert(dst.reg_offset == 0);
brw_reg = brw_vec8_grf(dst.reg + dst.reg_offset, 0);
brw_reg = retype(brw_reg, dst.type);
brw_reg.dw1.bits.writemask = dst.writemask;