summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/llvmpipe/lp_bld_interp.c
diff options
context:
space:
mode:
authorVinson Lee <vlee@vmware.com>2010-07-18 01:14:36 -0700
committerVinson Lee <vlee@vmware.com>2010-07-18 01:14:36 -0700
commitf3a2f458a377b97674d1d0b8d304fd164ae8d6a3 (patch)
treed13fcd3d59ff55ee272c23863d8a5e4996f33d89 /src/gallium/drivers/llvmpipe/lp_bld_interp.c
parent70b27be923bcce4da171fb7154bb1df20bd85f87 (diff)
llvmpipe: Remove dead initialization.
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_bld_interp.c')
-rw-r--r--src/gallium/drivers/llvmpipe/lp_bld_interp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_bld_interp.c b/src/gallium/drivers/llvmpipe/lp_bld_interp.c
index 90d2b26f9f2..78744da500b 100644
--- a/src/gallium/drivers/llvmpipe/lp_bld_interp.c
+++ b/src/gallium/drivers/llvmpipe/lp_bld_interp.c
@@ -261,7 +261,7 @@ attribs_update(struct lp_build_interp_soa_context *bld, int quad_index)
const unsigned interp = bld->interp[attrib];
for(chan = 0; chan < NUM_CHANNELS; ++chan) {
if(mask & (1 << chan)) {
- LLVMValueRef a = coeff_bld->undef;
+ LLVMValueRef a;
if (interp == LP_INTERP_CONSTANT ||
interp == LP_INTERP_FACING) {
a = bld->a[attrib][chan];