i965/fs: Change incorrect use of 'struct fs_reg' to simply 'fs_reg'.
authorKenneth Graunke <kenneth@whitecape.org>
Thu, 18 Aug 2011 21:05:11 +0000 (14:05 -0700)
committerKenneth Graunke <kenneth@whitecape.org>
Sat, 20 Aug 2011 06:29:24 +0000 (23:29 -0700)
It's actually a class.

Signed-off-by: Kenneth Graunke <kenneth@whitecape.org>
src/mesa/drivers/dri/i965/brw_fs_visitor.cpp

index 2dc9132..33ad127 100644 (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 */