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_glue.h | |
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_glue.h')
-rw-r--r-- | erts/emulator/hipe/hipe_x86_glue.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/erts/emulator/hipe/hipe_x86_glue.h b/erts/emulator/hipe/hipe_x86_glue.h index d0c8eec2bc..0e9fcd61f1 100644 --- a/erts/emulator/hipe/hipe_x86_glue.h +++ b/erts/emulator/hipe/hipe_x86_glue.h @@ -62,7 +62,9 @@ static __inline__ void hipe_arch_glue_init(void) .exnra = (unsigned long)nbif_fail, .sdesc = { .bucket = { .hvalue = (unsigned long)nbif_return }, - .summary = (1<<8), + .fsize = 0, + .has_exnra = 1, + .arity = 0, #ifdef DEBUG .dbg_F = am_return, #endif |