diff options
author | Sverker Eriksson <[email protected]> | 2016-10-03 19:22:08 +0200 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2016-10-14 14:29:17 +0200 |
commit | d347e91735cce9ace9c376ba4913fcf688da22f8 (patch) | |
tree | 45823b8075c65c4f56421913a15ccd0916655e2e /erts | |
parent | d9e8fa3d13be54246297ac9776e835ce0bdcd362 (diff) | |
download | otp-d347e91735cce9ace9c376ba4913fcf688da22f8.tar.gz otp-d347e91735cce9ace9c376ba4913fcf688da22f8.tar.bz2 otp-d347e91735cce9ace9c376ba4913fcf688da22f8.zip |
erts: Remove debug printout for hipe loader state
creation and destruction.
Diffstat (limited to 'erts')
-rw-r--r-- | erts/emulator/hipe/hipe_load.c | 5 |
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); |