aboutsummaryrefslogtreecommitdiffstats
path: root/erts/emulator/beam/export.h
diff options
context:
space:
mode:
Diffstat (limited to 'erts/emulator/beam/export.h')
-rw-r--r--erts/emulator/beam/export.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/erts/emulator/beam/export.h b/erts/emulator/beam/export.h
index 57b6a7afcf..2758d71a3c 100644
--- a/erts/emulator/beam/export.h
+++ b/erts/emulator/beam/export.h
@@ -53,7 +53,7 @@ typedef struct export
* Otherwise: 0.
*/
#if HALFWORD_HEAP
- UWord code[5];
+ BeamInstr code[5];
#else
Eterm code[5];
#endif
@@ -78,6 +78,6 @@ Export *export_get(Export*);
#include "beam_load.h" /* For em_* extern declarations */
#define ExportIsBuiltIn(EntryPtr) \
(((EntryPtr)->address == (EntryPtr)->code + 3) && \
- ((EntryPtr)->code[3] == (UWord) em_apply_bif))
+ ((EntryPtr)->code[3] == (BeamInstr) em_apply_bif))
#endif