summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJosé Fonseca <[email protected]>2014-05-12 16:12:32 +0100
committerJosé Fonseca <[email protected]>2014-05-14 11:05:00 +0100
commitb18b7781b2311134d16495393413abc1be66accc (patch)
treed064ca4c1409bcc0c822dbecee5baecb2a222330 /src
parenta6f5cc66db2e784c5fe1ee89c990e554e6528be3 (diff)
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 <[email protected]>
Diffstat (limited to 'src')
-rw-r--r--src/gallium/auxiliary/gallivm/lp_bld_init.c3
-rw-r--r--src/gallium/auxiliary/gallivm/lp_bld_misc.cpp8
-rw-r--r--src/gallium/auxiliary/gallivm/lp_bld_misc.h4
3 files changed, 0 insertions, 15 deletions
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<llvm::Function>(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);