diff options
author | Rickard Green <[email protected]> | 2015-11-11 11:39:32 +0100 |
---|---|---|
committer | Rickard Green <[email protected]> | 2015-11-12 15:25:48 +0100 |
commit | 9c6f45b901ee701553afe34c0b33b7d931d73fd9 (patch) | |
tree | be8cf72e18a7d667b2541dc08fbb2d649d876098 /erts/emulator/hipe/hipe_native_bif.c | |
parent | b56f5a163555181dceb79cbfd0d69d3cb5015e9c (diff) | |
download | otp-9c6f45b901ee701553afe34c0b33b7d931d73fd9.tar.gz otp-9c6f45b901ee701553afe34c0b33b7d931d73fd9.tar.bz2 otp-9c6f45b901ee701553afe34c0b33b7d931d73fd9.zip |
Bump reductions on GC
Diffstat (limited to 'erts/emulator/hipe/hipe_native_bif.c')
-rw-r--r-- | erts/emulator/hipe/hipe_native_bif.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/hipe/hipe_native_bif.c b/erts/emulator/hipe/hipe_native_bif.c index ceae3497c5..aa81008b12 100644 --- a/erts/emulator/hipe/hipe_native_bif.c +++ b/erts/emulator/hipe/hipe_native_bif.c @@ -80,7 +80,7 @@ Eterm hipe_show_nstack_1(BIF_ALIST_1) void hipe_gc(Process *p, Eterm need) { hipe_set_narity(p, 1); - p->fcalls -= erts_garbage_collect(p, unsigned_val(need), NULL, 0); + erts_garbage_collect(p, unsigned_val(need), NULL, 0); hipe_set_narity(p, 0); } |