From f503b3dd9d6522abdabab1e25d0652c9d3079421 Mon Sep 17 00:00:00 2001 From: José Fonseca Date: Sun, 30 May 2010 16:38:23 +0100 Subject: llvmpipe: Use pointer_to_func() instead of custom wrappers. --- src/gallium/drivers/llvmpipe/lp_jit.h | 30 ------------------------------ 1 file changed, 30 deletions(-) (limited to 'src/gallium/drivers/llvmpipe/lp_jit.h') diff --git a/src/gallium/drivers/llvmpipe/lp_jit.h b/src/gallium/drivers/llvmpipe/lp_jit.h index 8dee0413019..8d06e65725f 100644 --- a/src/gallium/drivers/llvmpipe/lp_jit.h +++ b/src/gallium/drivers/llvmpipe/lp_jit.h @@ -169,36 +169,6 @@ typedef void uint32_t *counter); -/** cast wrapper to avoid compiler warnings */ -static INLINE lp_jit_frag_func -cast_voidptr_to_lp_jit_frag_func(void *v) -{ - union { - void *v; - lp_jit_frag_func f; - } u; - assert(sizeof(u.v) == sizeof(u.f)); - u.v = v; - return u.f; -} - - -/** cast wrapper */ -static INLINE void * -cast_lp_jit_frag_func_to_voidptr(lp_jit_frag_func f) -{ - union { - void *v; - lp_jit_frag_func f; - } u; - assert(sizeof(u.v) == sizeof(u.f)); - u.f = f; - return u.v; -} - - - - void lp_jit_screen_cleanup(struct llvmpipe_screen *screen); -- cgit v1.2.3