diff options
author | Björn Gustavsson <[email protected]> | 2010-11-11 14:54:18 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2011-01-17 15:23:36 +0100 |
commit | 89337287749d57024df06eaceca1236899efdcd1 (patch) | |
tree | 951ac18d0b31aa7c1f7b15e137b9a078d4fb9f59 /erts/emulator/beam/beam_emu.c | |
parent | ecb87dd4e18e445dd42788bd6a1db9d64c5fee1e (diff) | |
download | otp-89337287749d57024df06eaceca1236899efdcd1.tar.gz otp-89337287749d57024df06eaceca1236899efdcd1.tar.bz2 otp-89337287749d57024df06eaceca1236899efdcd1.zip |
Remove the last vestiges of the allocating fmove/2 instruction
There was a version of the BEAM loader and emulator that
had two versions of the fmove/2 instruction, one version
that allocated heap space internally and a newer version that
assumed that a previous test_heap/2 instruction had already
allocated the heap space.
Though the allocating fmove/2 instruction is no longer
supported, some vestiges of it still remains.
Diffstat (limited to 'erts/emulator/beam/beam_emu.c')
-rw-r--r-- | erts/emulator/beam/beam_emu.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/erts/emulator/beam/beam_emu.c b/erts/emulator/beam/beam_emu.c index 8a0e12dd4f..254eba42d0 100644 --- a/erts/emulator/beam/beam_emu.c +++ b/erts/emulator/beam/beam_emu.c @@ -4723,7 +4723,7 @@ apply_bif_or_nif_epilogue: NextPF(2, next); } - OpCase(fmove_new_ld): { + OpCase(fmove_ld): { Eterm fr = Arg(0); Eterm dest = make_float(HTOP); @@ -4753,11 +4753,6 @@ apply_bif_or_nif_epilogue: NextPF(2, next); } - /* - * Old allocating fmove. - */ - - #ifdef NO_FPE_SIGNALS OpCase(fclearerror): OpCase(i_fcheckerror): |