diff options
author | Patrik Nyblom <[email protected]> | 2010-02-04 12:15:29 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2010-03-10 14:25:00 +0100 |
commit | 0cbb78132f50be8ba38051963314b9722c1aba05 (patch) | |
tree | 31d9eab7b879280e87ad800f3303092f80bea5a0 /erts/emulator/beam/global.h | |
parent | fb94cd974dc03baf149264ca4f4d50c6d1f80f21 (diff) | |
download | otp-0cbb78132f50be8ba38051963314b9722c1aba05.tar.gz otp-0cbb78132f50be8ba38051963314b9722c1aba05.tar.bz2 otp-0cbb78132f50be8ba38051963314b9722c1aba05.zip |
Fix the BEAM dissambler for the half-word emulator
Diffstat (limited to 'erts/emulator/beam/global.h')
-rw-r--r-- | erts/emulator/beam/global.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/erts/emulator/beam/global.h b/erts/emulator/beam/global.h index 2afb6775b5..ebe7302373 100644 --- a/erts/emulator/beam/global.h +++ b/erts/emulator/beam/global.h @@ -1570,7 +1570,9 @@ Sint cmp(Eterm, Eterm); #define CMP_EQ(a,b) ((a) == (b) || cmp_eq((a),(b))) #define CMP_NE(a,b) ((a) != (b) && cmp_ne((a),(b))) +/* duplicates from big.h */ int term_to_Uint(Eterm term, Uint *up); +int term_to_UWord(Eterm, UWord*); #ifdef HAVE_ERTS_NOW_CPU extern int erts_cpu_timestamp; |