summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorArtem Pyanykh <artem.pyanykh@gmail.com>2019-04-12 10:42:43 +0300
committerMarge Bot <ben+marge-bot@smart-cactus.org>2019-04-14 01:26:35 -0400
commit6094d43f36bdab5ff3f246afca9a6018545fdd73 (patch)
treee296c0d3555dceeaf8a60bb90817f1d39c30064c /docs
parentedcef7b384ca5af6e67d58c39779d03f80768538 (diff)
downloadhaskell-6094d43f36bdab5ff3f246afca9a6018545fdd73.tar.gz
docs: mention memcpy optimization for ByteArrays in 8.10.1-notes
Diffstat (limited to 'docs')
-rw-r--r--docs/users_guide/8.10.1-notes.rst9
1 files changed, 5 insertions, 4 deletions
diff --git a/docs/users_guide/8.10.1-notes.rst b/docs/users_guide/8.10.1-notes.rst
index 9212dceea4..21a7f2b275 100644
--- a/docs/users_guide/8.10.1-notes.rst
+++ b/docs/users_guide/8.10.1-notes.rst
@@ -61,10 +61,11 @@ Compiler
:ghc-flag:`-Wredundant-record-wildcards` which warn users when they have
redundant or unused uses of a record wildcard match.
-- Calls to `memset` are now unrolled more aggressively and the
- produced code is more efficient on `x86_64` with added support for
- 64-bit `MOV`s. In particular, `setByteArray#` calls that were not
- optimized before, now will be. See :ghc-ticket:`16052`.
+- Calls to `memset` and `memcpy` are now unrolled more aggressively
+ and the produced code is more efficient on `x86_64` with added
+ support for 64-bit `MOV`s. In particular, `setByteArray#` and
+ `copyByteArray#` calls that were not optimized before, now will
+ be. See :ghc-ticket:`16052`.
Runtime system
~~~~~~~~~~~~~~