summaryrefslogtreecommitdiff
path: root/testsuite/config
diff options
context:
space:
mode:
authorMatthew Pickering <matthewtpickering@gmail.com>2022-10-13 18:08:34 +0100
committerMarge Bot <ben+marge-bot@smart-cactus.org>2022-10-17 19:23:10 -0400
commit0fa2d185b23eb08e2a2f2a4b7e40431c599e446d (patch)
tree784756d464fa2d6437f1bef6670313b3ba7c2e89 /testsuite/config
parent0d9fb651768f0b88be0a564deebbbd2391104ab4 (diff)
downloadhaskell-0fa2d185b23eb08e2a2f2a4b7e40431c599e446d.tar.gz
testsuite: Fix typo when setting llvm_ways
Since 2014 llvm_ways has been set to [] so none of the tests which use only_ways(llvm_ways) have worked as expected. Hopefully the tests still pass with this typo fix!
Diffstat (limited to 'testsuite/config')
-rw-r--r--testsuite/config/ghc3
1 files changed, 1 insertions, 2 deletions
diff --git a/testsuite/config/ghc b/testsuite/config/ghc
index a802698071..9e6fa8db0a 100644
--- a/testsuite/config/ghc
+++ b/testsuite/config/ghc
@@ -176,8 +176,7 @@ opt_ways = [x[0] for x in config.way_flags.items()
if '-O' in x[1]]
llvm_ways = [x[0] for x in config.way_flags.items()
- if '-fflvm' in x[1]]
-
+ if '-fllvm' in x[1]]
def get_compiler_info():
if config.unregisterised: