mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 21:50:12 +01:00
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:
parent
64f11db558
commit
eb86bb55f5
1 changed files with 1 additions and 1 deletions
|
|
@ -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 */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue