aboutsummaryrefslogtreecommitdiffstats
path: root/erts/emulator/hipe/hipe_load.c
diff options
context:
space:
mode:
Diffstat (limited to 'erts/emulator/hipe/hipe_load.c')
-rw-r--r--erts/emulator/hipe/hipe_load.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/erts/emulator/hipe/hipe_load.c b/erts/emulator/hipe/hipe_load.c
index c05dd886a4..fcbcf1a6a4 100644
--- a/erts/emulator/hipe/hipe_load.c
+++ b/erts/emulator/hipe/hipe_load.c
@@ -37,9 +37,6 @@ void hipe_free_loader_state(HipeLoaderState *stp)
{
if (stp->module == NIL) return;
- erts_fprintf(stderr, "Destroying HiPE loader state for module %T\n",
- stp->module);
-
// TODO: Needs to be freed separately. We'd like have a unified executable
// code allocator, so postpone this for now.
/* if (stp->text_segment) */
@@ -81,8 +78,6 @@ Binary *hipe_alloc_loader_state(Eterm module)
if (is_not_atom(module)) return NULL;
- erts_fprintf(stderr, "Creating HiPE loader state for module %T\n", module);
-
magic = erts_create_magic_binary(sizeof(HipeLoaderState),
hipe_loader_state_dtor);
erts_refc_inc(&magic->refc, 1);