diff options
author | Rickard Green <[email protected]> | 2015-11-13 09:53:51 +0100 |
---|---|---|
committer | Rickard Green <[email protected]> | 2015-11-13 09:53:51 +0100 |
commit | cbad4a1be72c75a452a3d70d57bf1c1145c08ad9 (patch) | |
tree | 359cdd90d063bff84d6e7ef9ea81f2ef81acb67c /erts/emulator/hipe/hipe_mode_switch.h | |
parent | c66844d145177fbb65bcc101a9962e5a5673c162 (diff) | |
parent | 9c6f45b901ee701553afe34c0b33b7d931d73fd9 (diff) | |
download | otp-cbad4a1be72c75a452a3d70d57bf1c1145c08ad9.tar.gz otp-cbad4a1be72c75a452a3d70d57bf1c1145c08ad9.tar.bz2 otp-cbad4a1be72c75a452a3d70d57bf1c1145c08ad9.zip |
Merge branch 'rickard/gc-bump-reds/OTP-13097'
* rickard/gc-bump-reds/OTP-13097:
Bump reductions on GC
Diffstat (limited to 'erts/emulator/hipe/hipe_mode_switch.h')
-rw-r--r-- | erts/emulator/hipe/hipe_mode_switch.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/hipe/hipe_mode_switch.h b/erts/emulator/hipe/hipe_mode_switch.h index bc863a4f36..620cc6356b 100644 --- a/erts/emulator/hipe/hipe_mode_switch.h +++ b/erts/emulator/hipe/hipe_mode_switch.h @@ -95,7 +95,7 @@ ERTS_GLB_INLINE void hipe_reserve_beam_trap_frame(Process *p, Eterm reg[], unsig /* ensure that at least 2 words are available on the BEAM stack */ if ((p->stop - 2) < p->htop) { - p->fcalls -= erts_garbage_collect(p, 2, reg, arity); + erts_garbage_collect(p, 2, reg, arity); ASSERT(!((p->stop - 2) < p->htop)); } p->stop -= 2; |