diff options
author | Niclas Axelsson <[email protected]> | 2011-03-11 12:12:40 +0100 |
---|---|---|
committer | Niclas Axelsson <[email protected]> | 2011-03-11 12:15:31 +0100 |
commit | b9a94fef63f79f5a5a476b284104039336113d5b (patch) | |
tree | b2e45f7c024abae3477a708ecdd2b989897fee8f /erts/emulator/hipe/hipe_bif2.c | |
parent | cdc5de779b4d1007a961d8f99c9280c460142777 (diff) | |
parent | 0c16b0931feb67641b91d973dbf8f5756384c19a (diff) | |
download | otp-b9a94fef63f79f5a5a476b284104039336113d5b.tar.gz otp-b9a94fef63f79f5a5a476b284104039336113d5b.tar.bz2 otp-b9a94fef63f79f5a5a476b284104039336113d5b.zip |
Merge branch 'pg/hipe-remove-constants-pool' into dev
* pg/hipe-remove-constants-pool:
Remove hipe constants pool
OTP-9128
Diffstat (limited to 'erts/emulator/hipe/hipe_bif2.c')
-rw-r--r-- | erts/emulator/hipe/hipe_bif2.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/erts/emulator/hipe/hipe_bif2.c b/erts/emulator/hipe/hipe_bif2.c index f992b758be..e5a236ce69 100644 --- a/erts/emulator/hipe/hipe_bif2.c +++ b/erts/emulator/hipe/hipe_bif2.c @@ -33,7 +33,6 @@ #include "big.h" #include "hipe_debug.h" #include "hipe_mode_switch.h" -#include "hipe_bif0.h" /* hipe_constants_{start,next} */ #include "hipe_arch.h" #include "hipe_stack.h" @@ -124,18 +123,6 @@ BIF_RETTYPE hipe_bifs_show_term_1(BIF_ALIST_1) BIF_RET(am_true); } -BIF_RETTYPE hipe_bifs_show_literals_0(BIF_ALIST_0) -{ - Eterm *p; - - p = hipe_constants_start; - for (; p < hipe_constants_next; ++p) - printf("0x%0*lx: 0x%0*lx\r\n", - 2*(int)sizeof(long), (unsigned long)p, - 2*(int)sizeof(long), *p); - BIF_RET(am_true); -} - BIF_RETTYPE hipe_bifs_in_native_0(BIF_ALIST_0) { BIF_RET(am_false); |