From: José Fonseca Date: Mon, 12 May 2014 15:12:32 +0000 (+0100) Subject: gallivm: Remove lp_func_delete_body. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b18b7781b2311134d16495393413abc1be66accc;p=mesa.git gallivm: Remove lp_func_delete_body. Not necessary, now that we will free the whole module (hence all function bodies) immediately after compiling. Reviewed-by: Roland Scheidegger --- diff --git a/src/gallium/auxiliary/gallivm/lp_bld_init.c b/src/gallium/auxiliary/gallivm/lp_bld_init.c index 36d1bc54550..a39c1a3ce78 100644 --- a/src/gallium/auxiliary/gallivm/lp_bld_init.c +++ b/src/gallium/auxiliary/gallivm/lp_bld_init.c @@ -605,8 +605,5 @@ gallivm_jit_function(struct gallivm_state *gallivm, lp_profile(func, code); #endif - /* Free the function body to save memory */ - lp_func_delete_body(func); - return jit_func; } diff --git a/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp b/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp index 8825e5468bd..d03680fc67d 100644 --- a/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp +++ b/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp @@ -117,14 +117,6 @@ lp_set_target_options(void) } -extern "C" void -lp_func_delete_body(LLVMValueRef FF) -{ - llvm::Function *func = llvm::unwrap(FF); - func->deleteBody(); -} - - extern "C" LLVMValueRef lp_build_load_volatile(LLVMBuilderRef B, LLVMValueRef PointerVal, diff --git a/src/gallium/auxiliary/gallivm/lp_bld_misc.h b/src/gallium/auxiliary/gallivm/lp_bld_misc.h index 847894bb035..64d2a04190f 100644 --- a/src/gallium/auxiliary/gallivm/lp_bld_misc.h +++ b/src/gallium/auxiliary/gallivm/lp_bld_misc.h @@ -46,10 +46,6 @@ extern void lp_set_target_options(void); -extern void -lp_func_delete_body(LLVMValueRef func); - - extern LLVMValueRef lp_build_load_volatile(LLVMBuilderRef B, LLVMValueRef PointerVal, const char *Name);