diff options
author | Sverker Eriksson <[email protected]> | 2016-10-04 12:26:54 +0200 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2016-10-10 11:31:54 +0200 |
commit | 9cb85a8cd1e02263f34c57aac68d16a2f1c03180 (patch) | |
tree | c93cab8f8529090e8d66d6317cea9bdf15a6b16a /erts/emulator/hipe/hipe_x86_stack.c | |
parent | 3bffb5797c9498e2294b65ba24abec5842655a11 (diff) | |
download | otp-9cb85a8cd1e02263f34c57aac68d16a2f1c03180.tar.gz otp-9cb85a8cd1e02263f34c57aac68d16a2f1c03180.tar.bz2 otp-9cb85a8cd1e02263f34c57aac68d16a2f1c03180.zip |
erts: Refactor hipe_sdesc.summary into bit fields
Diffstat (limited to 'erts/emulator/hipe/hipe_x86_stack.c')
-rw-r--r-- | erts/emulator/hipe/hipe_x86_stack.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/erts/emulator/hipe/hipe_x86_stack.c b/erts/emulator/hipe/hipe_x86_stack.c index 6975cc4669..9426b166e2 100644 --- a/erts/emulator/hipe/hipe_x86_stack.c +++ b/erts/emulator/hipe/hipe_x86_stack.c @@ -71,7 +71,9 @@ void hipe_print_nstack(Process *p) nstkarity = p->hipe.narity - NR_ARG_REGS; if ((int)nstkarity < 0) nstkarity = 0; - sdesc0.summary = nstkarity; + sdesc0.fsize = 0; + sdesc0.has_exnra = 0; + sdesc0.arity = nstkarity; sdesc0.livebits[0] = ~1; sdesc = &sdesc0; |