diff options
author | Vinson Lee <[email protected]> | 2010-04-25 02:04:13 -0700 |
---|---|---|
committer | Vinson Lee <[email protected]> | 2010-04-25 02:04:13 -0700 |
commit | 5d37cebc1b2f41ef68a5f8bb5ad66973ec2c1dd8 (patch) | |
tree | 014b47a3307de831163e3b71ad80b7b1ce4e06ae /src | |
parent | d69ed3a96eb4ed2630bee28f1937d376eee435e1 (diff) |
gallivm: Rename variable info to opcode_info.
Avoid hiding existing variable already named info in outer scope.
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/auxiliary/gallivm/lp_bld_tgsi_soa.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gallium/auxiliary/gallivm/lp_bld_tgsi_soa.c b/src/gallium/auxiliary/gallivm/lp_bld_tgsi_soa.c index aed1d583cb2..16741e41c8d 100644 --- a/src/gallium/auxiliary/gallivm/lp_bld_tgsi_soa.c +++ b/src/gallium/auxiliary/gallivm/lp_bld_tgsi_soa.c @@ -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; |