summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/llvmpipe/lp_test_sincos.c
diff options
context:
space:
mode:
authorJosé Fonseca <jfonseca@vmware.com>2010-05-24 13:56:53 +0100
committerJosé Fonseca <jfonseca@vmware.com>2010-05-24 13:56:53 +0100
commit5a0b4627fc1af2e72b3f821c09bfb58b64d657b6 (patch)
tree9211f5d9d6b517cdfdd9deb6074ecf35b50db7e3 /src/gallium/drivers/llvmpipe/lp_test_sincos.c
parent80ee3a440cd3c0403004cf35e0638fc52088b9ff (diff)
llvmpipe: Remove unused sincos_test_case struct.
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_test_sincos.c')
-rw-r--r--src/gallium/drivers/llvmpipe/lp_test_sincos.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_test_sincos.c b/src/gallium/drivers/llvmpipe/lp_test_sincos.c
index 883e15fbb6..f95577d596 100644
--- a/src/gallium/drivers/llvmpipe/lp_test_sincos.c
+++ b/src/gallium/drivers/llvmpipe/lp_test_sincos.c
@@ -41,10 +41,6 @@
#include "lp_test.h"
-struct sincos_test_case {
-};
-
-
void
write_tsv_header(FILE *fp)
{
@@ -101,7 +97,7 @@ printv(char* string, v4sf value)
PIPE_ALIGN_STACK
static boolean
-test_sincos(unsigned verbose, FILE *fp, const struct sincos_test_case *testcase)
+test_sincos(unsigned verbose, FILE *fp)
{
LLVMModuleRef module = NULL;
LLVMValueRef test_sin = NULL, test_cos = NULL;
@@ -178,7 +174,7 @@ test_sincos(unsigned verbose, FILE *fp, const struct sincos_test_case *testcase)
#else /* !PIPE_ARCH_SSE */
static boolean
-test_sincos(unsigned verbose, FILE *fp, const struct sincos_test_case *testcase)
+test_sincos(unsigned verbose, FILE *fp)
{
return TRUE;
}