diff options
author | Takenobu Tani <takenobu.hs@gmail.com> | 2017-07-19 15:06:27 -0400 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2017-07-19 16:00:31 -0400 |
commit | 1ed41a7413a45e11a9bad3aafcfb7ee3f26236e4 (patch) | |
tree | 33aa014e6bc19d7a7964611c8e5c2eb3f20ca4a2 /compiler/coreSyn | |
parent | c9e4c861c6855e03bd14b182d2173da559e98d85 (diff) | |
download | haskell-1ed41a7413a45e11a9bad3aafcfb7ee3f26236e4.tar.gz |
Fix links to SPJ’s papers (fixes #12578)
This fixes #12578.
Update links to SPJ's papers in following files:
* compiler/coreSyn/CoreSyn.hs
* docs/users_guide/using-optimisation.rst
* docs/users_guide/parallel.rst
* docs/users_guide/glasgow_exts.rst
This commit is for ghc-8.2 branch.
Test Plan: build
Reviewers: austin, bgamari
Reviewed By: bgamari
Subscribers: rwbarton, thomie
GHC Trac Issues: #12578
Differential Revision: https://phabricator.haskell.org/D3745
Diffstat (limited to 'compiler/coreSyn')
-rw-r--r-- | compiler/coreSyn/CoreSyn.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/coreSyn/CoreSyn.hs b/compiler/coreSyn/CoreSyn.hs index a669437c68..13cf8ae5fb 100644 --- a/compiler/coreSyn/CoreSyn.hs +++ b/compiler/coreSyn/CoreSyn.hs @@ -137,7 +137,7 @@ These data types are the heart of the compiler -} -- | This is the data type that represents GHCs core intermediate language. Currently --- GHC uses System FC <http://research.microsoft.com/~simonpj/papers/ext-f/> for this purpose, +-- GHC uses System FC <https://www.microsoft.com/en-us/research/publication/system-f-with-type-equality-coercions/> for this purpose, -- which is closely related to the simpler and better known System F <http://en.wikipedia.org/wiki/System_F>. -- -- We get from Haskell source to this Core language in a number of stages: |