diff options
author | Ben Gamari <ben@smart-cactus.org> | 2019-02-20 14:38:05 -0500 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2019-11-09 18:03:01 -0500 |
commit | 8a10f9fbe40ca7692bd58373a4f9d2db19bfa81d (patch) | |
tree | 4fa22a38c000744df8cc32503d9b849c3940a071 | |
parent | 2e4fc04b23c41673ef93742cc6c76fe571914a19 (diff) | |
download | haskell-8a10f9fbe40ca7692bd58373a4f9d2db19bfa81d.tar.gz |
template-haskell: Document assembler foreign file support
See #16180.
-rw-r--r-- | docs/users_guide/8.8.1-notes.rst | 2 | ||||
-rw-r--r-- | libraries/template-haskell/changelog.md | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/docs/users_guide/8.8.1-notes.rst b/docs/users_guide/8.8.1-notes.rst index 71061ed5a3..aae1b69e40 100644 --- a/docs/users_guide/8.8.1-notes.rst +++ b/docs/users_guide/8.8.1-notes.rst @@ -176,6 +176,8 @@ Template Haskell - Template Haskell now supports implicit parameters and recursive do. +- Template Haskell splices can now embed assembler source (:ghc-ticket:`16180`) + ``ghc-prim`` library ~~~~~~~~~~~~~~~~~~~~ diff --git a/libraries/template-haskell/changelog.md b/libraries/template-haskell/changelog.md index 74b4bd2720..22f392436e 100644 --- a/libraries/template-haskell/changelog.md +++ b/libraries/template-haskell/changelog.md @@ -42,6 +42,8 @@ * Add `Lift` instances for `NonEmpty` and `Void` + * `addForeignFilePath` now support assembler sources (#16180). + ## 2.14.0.0 *TBA* * Introduce an `addForeignFilePath` function, as well as a corresponding |