diff options
author | Rickard Green <[email protected]> | 2017-01-17 15:30:06 +0100 |
---|---|---|
committer | Rickard Green <[email protected]> | 2017-01-17 15:30:06 +0100 |
commit | 919d35b4d17e9a896aca02cf22d6514d38a8b205 (patch) | |
tree | 57199f090d32dfb02d2e89d9d29b750b1d87f3d7 /erts/emulator | |
parent | f6e9a8c65c2c8a9e0a256130942897988d5a37aa (diff) | |
parent | ec2e03ad47d38400ac39dbc34911705fd50315aa (diff) | |
download | otp-919d35b4d17e9a896aca02cf22d6514d38a8b205.tar.gz otp-919d35b4d17e9a896aca02cf22d6514d38a8b205.tar.bz2 otp-919d35b4d17e9a896aca02cf22d6514d38a8b205.zip |
Merge branch 'maint'
* maint:
Remove debug printout and unnecessary GC
Diffstat (limited to 'erts/emulator')
-rw-r--r-- | erts/emulator/hipe/hipe_native_bif.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/erts/emulator/hipe/hipe_native_bif.c b/erts/emulator/hipe/hipe_native_bif.c index 0c0dc79591..9a9252e8b8 100644 --- a/erts/emulator/hipe/hipe_native_bif.c +++ b/erts/emulator/hipe/hipe_native_bif.c @@ -228,11 +228,6 @@ void hipe_handle_exception(Process *c_p) ASSERT(c_p->freason != TRAP); /* Should have been handled earlier. */ - if (c_p->mbuf) { - erts_printf("%s line %u: p==%p, p->mbuf==%p\n", __FUNCTION__, __LINE__, c_p, c_p->mbuf); - /* erts_garbage_collect(c_p, 0, NULL, 0); */ - } - /* * Check if we have an arglist for the top level call. If so, this * is encoded in Value, so we have to dig out the real Value as well @@ -261,11 +256,6 @@ void hipe_handle_exception(Process *c_p) /* Synthesized to avoid having to generate code for it. */ c_p->def_arg_reg[0] = exception_tag[GET_EXC_CLASS(c_p->freason)]; - if (c_p->mbuf) { - /* erts_printf("%s line %u: p==%p, p->mbuf==%p, p->lastbif==%p\n", __FUNCTION__, __LINE__, c_p, c_p->mbuf, c_p->hipe.lastbif); */ - erts_garbage_collect(c_p, 0, NULL, 0); - } - hipe_find_handler(c_p); } |