diff options
author | Sverker Eriksson <sverker@erlang.org> | 2018-01-03 17:09:40 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-03 17:09:40 +0100 |
commit | 93042b54da6a576b187bfb7b2222fc8a5a4d4f12 (patch) | |
tree | 63c351d2ce560f096a0655487ef5714dbbf2cedf /erts/emulator/hipe/hipe_native_bif.h | |
parent | 0c08677522f1add0f6161328a0009e3ac3401f1e (diff) | |
parent | 898352fd68022432c1e6f8d9b7a926394d3e8899 (diff) | |
download | otp-93042b54da6a576b187bfb7b2222fc8a5a4d4f12.tar.gz otp-93042b54da6a576b187bfb7b2222fc8a5a4d4f12.tar.bz2 otp-93042b54da6a576b187bfb7b2222fc8a5a4d4f12.zip |
Merge PR-1664 from sverker/sverker/hipe-bs_put_utf8-gc-bug OTP-14850
Fix GC bug for HiPE primop bs_put_utf8
Diffstat (limited to 'erts/emulator/hipe/hipe_native_bif.h')
-rw-r--r-- | erts/emulator/hipe/hipe_native_bif.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/hipe/hipe_native_bif.h b/erts/emulator/hipe/hipe_native_bif.h index 1127d4ac56..6321e66e7a 100644 --- a/erts/emulator/hipe/hipe_native_bif.h +++ b/erts/emulator/hipe/hipe_native_bif.h @@ -88,7 +88,7 @@ Binary *hipe_bs_reallocate(Binary*, int); int hipe_bs_put_small_float(Process*, Eterm, Uint, byte*, unsigned, unsigned); void hipe_bs_put_bits(Eterm, Uint, byte*, unsigned, unsigned); Eterm hipe_bs_utf8_size(Eterm); -BIF_RETTYPE nbif_impl_hipe_bs_put_utf8(NBIF_ALIST_3); +Eterm hipe_bs_put_utf8(Process*, Eterm arg, byte* base, Uint offset); Eterm hipe_bs_utf16_size(Eterm); BIF_RETTYPE nbif_impl_hipe_bs_put_utf16be(NBIF_ALIST_3); BIF_RETTYPE nbif_impl_hipe_bs_put_utf16le(NBIF_ALIST_3); |