diff options
author | Brian Paul <[email protected]> | 2010-07-21 08:08:12 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-07-21 08:08:12 -0600 |
commit | ec0e7b16bb6753bedbd611a97062934bfca03aa7 (patch) | |
tree | 321e4c9c06f5436d70523d112a0fecbf74464035 | |
parent | 4363d4d0b945c4ca6c303fb337e1fac39e6e1ad6 (diff) |
gallivm: rename a var to avoid compiler warnings
-rw-r--r-- | src/gallium/auxiliary/gallivm/lp_bld_tgsi_soa.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/auxiliary/gallivm/lp_bld_tgsi_soa.c b/src/gallium/auxiliary/gallivm/lp_bld_tgsi_soa.c index 3515d268f84..994bc537ce8 100644 --- a/src/gallium/auxiliary/gallivm/lp_bld_tgsi_soa.c +++ b/src/gallium/auxiliary/gallivm/lp_bld_tgsi_soa.c @@ -463,10 +463,10 @@ static LLVMValueRef emit_fetch( struct lp_build_tgsi_soa_context *bld, const struct tgsi_full_instruction *inst, - unsigned index, + unsigned src_op, const unsigned chan_index ) { - const struct tgsi_full_src_register *reg = &inst->Src[index]; + const struct tgsi_full_src_register *reg = &inst->Src[src_op]; const unsigned swizzle = tgsi_util_get_full_src_register_swizzle(reg, chan_index); LLVMValueRef res; |