i965: Fix up writemasked assignments in the new FS.

Not sure how I managed to get tests to succeed without this.  +54 piglits.
This commit is contained in:
Eric Anholt 2010-09-27 14:38:51 -07:00
parent 5e8ed7a79b
commit 11ba8bafdb
1 changed files with 1 additions and 1 deletions

View File

@ -868,9 +868,9 @@ fs_visitor::visit(ir_assignment *ir)
inst = emit(fs_inst(BRW_OPCODE_MOV, l, r));
if (ir->condition)
inst->predicated = true;
r.reg_offset++;
}
l.reg_offset++;
r.reg_offset++;
}
}