diff options
author | José Fonseca <jfonseca@vmware.com> | 2011-10-31 19:36:07 +0000 |
---|---|---|
committer | José Fonseca <jfonseca@vmware.com> | 2011-10-31 19:40:54 +0000 |
commit | 0f26c6ae3f9bd6b8c97e9e8a461d55b30e429239 (patch) | |
tree | 9cc133a25cc003b53d7763709a13f2067a8e9a64 /src/gallium/auxiliary/gallivm/lp_bld_conv.c | |
parent | 7ff247712d7c01141756d0999ff86af1e109ce7c (diff) | |
download | external_mesa3d-0f26c6ae3f9bd6b8c97e9e8a461d55b30e429239.zip external_mesa3d-0f26c6ae3f9bd6b8c97e9e8a461d55b30e429239.tar.gz external_mesa3d-0f26c6ae3f9bd6b8c97e9e8a461d55b30e429239.tar.bz2 |
llvmpipe: Remove unsed variables.
Diffstat (limited to 'src/gallium/auxiliary/gallivm/lp_bld_conv.c')
-rw-r--r-- | src/gallium/auxiliary/gallivm/lp_bld_conv.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/gallium/auxiliary/gallivm/lp_bld_conv.c b/src/gallium/auxiliary/gallivm/lp_bld_conv.c index c261d76..8a08663 100644 --- a/src/gallium/auxiliary/gallivm/lp_bld_conv.c +++ b/src/gallium/auxiliary/gallivm/lp_bld_conv.c @@ -346,10 +346,8 @@ lp_build_conv(struct gallivm_state *gallivm, LLVMValueRef src_int1; LLVMValueRef src_int2; LLVMValueRef src_int3; - LLVMTypeRef int16_vec_type; LLVMTypeRef int32_vec_type; LLVMTypeRef src_vec_type; - LLVMTypeRef dst_vec_type; LLVMValueRef const_255f; LLVMValueRef a, b, c, d; @@ -362,8 +360,6 @@ lp_build_conv(struct gallivm_state *gallivm, int32_type.sign = 1; src_vec_type = lp_build_vec_type(gallivm, src_type); - dst_vec_type = lp_build_vec_type(gallivm, dst_type); - int16_vec_type = lp_build_vec_type(gallivm, int16_type); int32_vec_type = lp_build_vec_type(gallivm, int32_type); const_255f = lp_build_const_vec(gallivm, src_type, 255.0f); |