diff options
author | Vinson Lee <vlee@vmware.com> | 2010-07-17 00:35:10 -0700 |
---|---|---|
committer | Vinson Lee <vlee@vmware.com> | 2010-07-17 00:35:10 -0700 |
commit | 184abe8e26f76a50ede43d503aa6bf129d8d6b76 (patch) | |
tree | 5a5b671389124fc326440f56b8c8e2f7fab5d208 /src/gallium/drivers | |
parent | e02edab1a1399b308aae59039a670c86242cd83e (diff) |
llvmpipe: Remove unused variable in lp_test_sincos.
Diffstat (limited to 'src/gallium/drivers')
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_test_sincos.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_test_sincos.c b/src/gallium/drivers/llvmpipe/lp_test_sincos.c index c7a903a025..1366ecddcb 100644 --- a/src/gallium/drivers/llvmpipe/lp_test_sincos.c +++ b/src/gallium/drivers/llvmpipe/lp_test_sincos.c @@ -108,7 +108,6 @@ test_sincos(unsigned verbose, FILE *fp) test_sincos_t sin_func; test_sincos_t cos_func; float unpacked[4]; - unsigned packed; boolean success = TRUE; module = LLVMModuleCreateWithName("test"); @@ -149,7 +148,6 @@ test_sincos(unsigned verbose, FILE *fp) cos_func = (test_sincos_t)LLVMGetPointerToGlobal(engine, test_cos); memset(unpacked, 0, sizeof unpacked); - packed = 0; // LLVMDumpModule(module); |