i965/fs: Change incorrect use of 'struct fs_reg' to simply 'fs_reg'.

It's actually a class.

Signed-off-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
Kenneth Graunke
2011-08-18 14:05:11 -07:00
parent 64f11db558
commit eb86bb55f5

View File

@@ -510,7 +510,7 @@ fs_visitor::emit_assignment_writes(fs_reg &l, fs_reg &r,
void
fs_visitor::visit(ir_assignment *ir)
{
struct fs_reg l, r;
fs_reg l, r;
fs_inst *inst;
/* FINISHME: arrays on the lhs */