diff options
author | Vinson Lee <[email protected]> | 2010-11-13 21:19:59 -0800 |
---|---|---|
committer | Vinson Lee <[email protected]> | 2010-11-13 21:19:59 -0800 |
commit | d11db2a857141c556378fde9f9f5ec08c7f8636f (patch) | |
tree | 1fb44a9de62ca8205d5281db7925e6f2c03ba107 /src | |
parent | 7e2256688afdc9506fe5cddd4ad46872671cbc23 (diff) |
i965: Silence uninitialized variable warning.
Silences this GCC warning.
brw_fs.cpp: In member function 'void fs_visitor::split_virtual_grfs()':
brw_fs.cpp:2516: warning: unused variable 'reg'
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_fs.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_fs.cpp b/src/mesa/drivers/dri/i965/brw_fs.cpp index 283d5aad496..b24655bf303 100644 --- a/src/mesa/drivers/dri/i965/brw_fs.cpp +++ b/src/mesa/drivers/dri/i965/brw_fs.cpp @@ -2515,6 +2515,7 @@ fs_visitor::split_virtual_grfs() for (int j = 2; j < this->virtual_grf_sizes[i]; j++) { int reg = virtual_grf_alloc(1); assert(reg == new_virtual_grf[i] + j - 1); + (void) reg; } this->virtual_grf_sizes[i] = 1; } |