diff options
author | Sverker Eriksson <[email protected]> | 2014-04-25 22:31:41 +0200 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2014-04-29 16:17:55 +0200 |
commit | 23246d73bbd3188e2c0a45408b9bd29fd034ccaf (patch) | |
tree | 63e0a5ec04187a00da149f3ee622b1dba1103914 /erts/emulator/hipe/hipe_debug.c | |
parent | 07b8f441ca711f9812fad9e9115bab3c3aa92f79 (diff) | |
download | otp-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.c | 2 |
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 |