mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 13:58:04 +02:00
r600g: Silence uninitialized variable warnings.
This commit is contained in:
parent
d76f1da7cb
commit
eb70e58caf
1 changed files with 4 additions and 4 deletions
|
|
@ -1092,10 +1092,10 @@ void r600_bc_clear(struct r600_bc *bc)
|
|||
|
||||
void r600_bc_dump(struct r600_bc *bc)
|
||||
{
|
||||
struct r600_bc_cf *cf;
|
||||
struct r600_bc_alu *alu;
|
||||
struct r600_bc_vtx *vtx;
|
||||
struct r600_bc_tex *tex;
|
||||
struct r600_bc_cf *cf = NULL;
|
||||
struct r600_bc_alu *alu = NULL;
|
||||
struct r600_bc_vtx *vtx = NULL;
|
||||
struct r600_bc_tex *tex = NULL;
|
||||
|
||||
unsigned i, id;
|
||||
char chip = '6';
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue