diff options
author | Joachim Breitner <mail@joachim-breitner.de> | 2016-09-24 09:16:59 +0900 |
---|---|---|
committer | Joachim Breitner <mail@joachim-breitner.de> | 2016-09-24 09:19:32 +0900 |
commit | 68f72f101d67b276aff567be03619a3fd9618017 (patch) | |
tree | 3ab35a6e7128daa45d778f590a1f037fa1094a5b /testsuite | |
parent | d122935340ddf97a5a8496070de1f9bb34328440 (diff) | |
download | haskell-68f72f101d67b276aff567be03619a3fd9618017.tar.gz |
Replace INLINEABLE by INLINABLE (#12613)
as the latter is the official, correct spelling, and the former just a
misspelling accepted by GHC.
Also document in the user’s guide that the alternative spelling is
accepted
This commit was brough to you by HIW 2016.
Diffstat (limited to 'testsuite')
-rw-r--r-- | testsuite/tests/perf/compiler/all.T | 2 | ||||
-rw-r--r-- | testsuite/tests/rename/should_fail/T7906.hs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/tests/perf/compiler/all.T b/testsuite/tests/perf/compiler/all.T index f93d8ca4a8..f9482d1973 100644 --- a/testsuite/tests/perf/compiler/all.T +++ b/testsuite/tests/perf/compiler/all.T @@ -615,7 +615,7 @@ test('T6048', # prev: 38000000 (x86/Linux) # 2012-10-08: 48887164 (x86/Linux) # 2014-04-04: 62618072 (x86 Windows, 64 bit machine) - # 2014-09-03: 56315812 (x86 Windows, w/w for INLINEABLE) + # 2014-09-03: 56315812 (x86 Windows, w/w for INLINABLE) # 2014-12-01: 49987836 (x86 Windows) # 2016-04-06: 55701280 (x86/Linux, 64-bit machine) diff --git a/testsuite/tests/rename/should_fail/T7906.hs b/testsuite/tests/rename/should_fail/T7906.hs index eeb0c892ac..0ec3f7b597 100644 --- a/testsuite/tests/rename/should_fail/T7906.hs +++ b/testsuite/tests/rename/should_fail/T7906.hs @@ -2,4 +2,4 @@ module T7906 where class Foo f where foo :: f -{-# INLINEABLE foo #-} +{-# INLINABLE foo #-} |