gallivm: Rename variable info to opcode_info.

Avoid hiding existing variable already named info in outer scope.
This commit is contained in:
Vinson Lee 2010-04-25 02:04:13 -07:00
parent d69ed3a96e
commit 5d37cebc1b

View file

@ -1809,10 +1809,10 @@ lp_build_tgsi_soa(LLVMBuilderRef builder,
case TGSI_TOKEN_TYPE_INSTRUCTION:
{
unsigned opcode = parse.FullToken.FullInstruction.Instruction.Opcode;
const struct tgsi_opcode_info *info = tgsi_get_opcode_info(opcode);
if (!emit_instruction( &bld, &parse.FullToken.FullInstruction, info ))
const struct tgsi_opcode_info *opcode_info = tgsi_get_opcode_info(opcode);
if (!emit_instruction( &bld, &parse.FullToken.FullInstruction, opcode_info ))
_debug_printf("warning: failed to translate tgsi opcode %s to LLVM\n",
info->mnemonic);
opcode_info->mnemonic);
}
break;