diff options
author | Sverker Eriksson <[email protected]> | 2011-10-11 17:45:41 +0200 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2011-10-26 11:36:00 +0200 |
commit | f167442302b722c1b963a2647ffa3557b75de94a (patch) | |
tree | 0488209cf9dfd7a46089980cb13b4886bd846c82 /erts/emulator/hipe/hipe_native_bif.h | |
parent | e1d9d279b6d3ecb201c4cf88a5ea28c0331c6e53 (diff) | |
download | otp-f167442302b722c1b963a2647ffa3557b75de94a.tar.gz otp-f167442302b722c1b963a2647ffa3557b75de94a.tar.bz2 otp-f167442302b722c1b963a2647ffa3557b75de94a.zip |
erts-hipe: Make hipe enabled emulator compile with new BIF calls
A first step to adapt hipe to the new BIF calling convention.
Diffstat (limited to 'erts/emulator/hipe/hipe_native_bif.h')
-rw-r--r-- | erts/emulator/hipe/hipe_native_bif.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/erts/emulator/hipe/hipe_native_bif.h b/erts/emulator/hipe/hipe_native_bif.h index 13a02b84a2..f310512494 100644 --- a/erts/emulator/hipe/hipe_native_bif.h +++ b/erts/emulator/hipe/hipe_native_bif.h @@ -23,6 +23,7 @@ #ifndef HIPE_NATIVE_BIF_H #define HIPE_NATIVE_BIF_H +#include "bif.h" #include "hipe_arch.h" /* @@ -71,8 +72,8 @@ AEXTERN(void,nbif_select_msg,(Process*)); AEXTERN(Eterm,nbif_cmp_2,(void)); AEXTERN(Eterm,nbif_eq_2,(void)); -Eterm hipe_nonclosure_address(Process*, Eterm, Uint); -Eterm hipe_conv_big_to_float(Process*, Eterm); +BIF_RETTYPE hipe_nonclosure_address(BIF_ALIST_2); +BIF_RETTYPE hipe_conv_big_to_float(BIF_ALIST_1); void hipe_fclearerror_error(Process*); void hipe_select_msg(Process*); void hipe_gc(Process*, Eterm); |