aboutsummaryrefslogtreecommitdiffstats
path: root/erts/emulator/hipe/hipe_debug.c
diff options
context:
space:
mode:
authorSverker Eriksson <[email protected]>2014-04-25 22:31:41 +0200
committerSverker Eriksson <[email protected]>2014-04-29 16:17:55 +0200
commit23246d73bbd3188e2c0a45408b9bd29fd034ccaf (patch)
tree63e0a5ec04187a00da149f3ee622b1dba1103914 /erts/emulator/hipe/hipe_debug.c
parent07b8f441ca711f9812fad9e9115bab3c3aa92f79 (diff)
downloadotp-23246d73bbd3188e2c0a45408b9bd29fd034ccaf.tar.gz
otp-23246d73bbd3188e2c0a45408b9bd29fd034ccaf.tar.bz2
otp-23246d73bbd3188e2c0a45408b9bd29fd034ccaf.zip
erts: Save some space in process struct for hipe
by combining hipe.ncallee and hipe.closure in a union as the comment indicate should be possible.
Diffstat (limited to 'erts/emulator/hipe/hipe_debug.c')
-rw-r--r--erts/emulator/hipe/hipe_debug.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/hipe/hipe_debug.c b/erts/emulator/hipe/hipe_debug.c
index 32694a8f97..7f82252308 100644
--- a/erts/emulator/hipe/hipe_debug.c
+++ b/erts/emulator/hipe/hipe_debug.c
@@ -231,7 +231,7 @@ void hipe_print_pcb(Process *p)
U("nsp ", hipe.nsp);
U("nstack ", hipe.nstack);
U("nstend ", hipe.nstend);
- U("ncallee ", hipe.ncallee);
+ U("ncallee ", hipe.u.ncallee);
hipe_arch_print_pcb(&p->hipe);
#endif /* HIPE */
#undef U