i965/fs: Fix typo in refactor of brw_fs_reg_allocate.cpp.

I'm amazed that my usual warnings check didn't catch this, and that this
passed piglit.
This commit is contained in:
Eric Anholt 2012-10-19 11:21:18 -07:00
parent f593acd577
commit 804469c58d
1 changed files with 1 additions and 1 deletions

View File

@ -174,7 +174,7 @@ int
count_to_loop_end(fs_inst *do_inst)
{
int depth = 1;
int ip = ip;
int ip = 1;
for (fs_inst *inst = (fs_inst *)do_inst->next;
depth > 0;
inst = (fs_inst *)inst->next) {