mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-07 17:20:21 +01:00
r600: fix warnings
This commit is contained in:
parent
cbf30fce32
commit
5552dffa39
1 changed files with 2 additions and 2 deletions
|
|
@ -6159,7 +6159,7 @@ GLboolean callPreSub(r700_AssemblerBase* pAsm,
|
|||
}
|
||||
if(uNumValidSrc > 0)
|
||||
{
|
||||
prelude_cf_ptr = pAsm->cf_current_alu_clause_ptr;
|
||||
prelude_cf_ptr = (R700ControlFlowGenericClause*) pAsm->cf_current_alu_clause_ptr;
|
||||
pAsm->alu_x_opcode = SQ_CF_INST_ALU;
|
||||
}
|
||||
|
||||
|
|
@ -6279,7 +6279,7 @@ GLboolean callPreSub(r700_AssemblerBase* pAsm,
|
|||
|
||||
next_ins(pAsm);
|
||||
|
||||
pAsm->callers[pAsm->unCallerArrayPointer - 1].finale_cf_ptr = pAsm->cf_current_alu_clause_ptr;
|
||||
pAsm->callers[pAsm->unCallerArrayPointer - 1].finale_cf_ptr = (R700ControlFlowGenericClause*) pAsm->cf_current_alu_clause_ptr;
|
||||
pAsm->callers[pAsm->unCallerArrayPointer - 1].prelude_cf_ptr = prelude_cf_ptr;
|
||||
pAsm->alu_x_opcode = SQ_CF_INST_ALU;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue