mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 11:18:08 +02:00
gallivm: silence uninitialized var warning
This commit is contained in:
parent
d9096926f8
commit
415c40735d
1 changed files with 1 additions and 1 deletions
|
|
@ -625,7 +625,7 @@ emit_store(
|
||||||
LLVMValueRef value)
|
LLVMValueRef value)
|
||||||
{
|
{
|
||||||
const struct tgsi_full_dst_register *reg = &inst->Dst[index];
|
const struct tgsi_full_dst_register *reg = &inst->Dst[index];
|
||||||
LLVMValueRef addr;
|
LLVMValueRef addr = NULL;
|
||||||
|
|
||||||
switch( inst->Instruction.Saturate ) {
|
switch( inst->Instruction.Saturate ) {
|
||||||
case TGSI_SAT_NONE:
|
case TGSI_SAT_NONE:
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue