summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAlp Mestanogullari <alpmestan@gmail.com>2019-05-30 14:18:01 +0200
committerMarge Bot <ben+marge-bot@smart-cactus.org>2019-06-11 18:41:52 -0400
commit762098bf2cfac657c0320249f62dc49bad77f7bf (patch)
tree20b53ee83153c9e7f91226b8a4a4d0e005aa9423 /docs
parent45616133efba0c17a461ecf085427b7956250fad (diff)
downloadhaskell-762098bf2cfac657c0320249f62dc49bad77f7bf.tar.gz
rts/RtsFlags.c: mention that -prof too enables support for +RTS -l
Diffstat (limited to 'docs')
-rw-r--r--docs/users_guide/phases.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/users_guide/phases.rst b/docs/users_guide/phases.rst
index 1d3b2fbc5a..fa28874473 100644
--- a/docs/users_guide/phases.rst
+++ b/docs/users_guide/phases.rst
@@ -365,7 +365,7 @@ defined by your local GHC installation, the following trick is useful:
.. code-block:: c
- #ifdef MIN_VERSION_GLASGOW_HASKELL
+ #if defined(MIN_VERSION_GLASGOW_HASKELL)
#if MIN_VERSION_GLASGOW_HASKELL(7,10,2,0)
/* code that applies only to GHC 7.10.2 or later */
#endif