[Git][ghc/ghc][wip/llvm-ways] testsuite: Fix typo when setting llvm_ways

Matthew Pickering (@mpickering) gitlab at gitlab.haskell.org
Thu Oct 13 17:10:29 UTC 2022



Matthew Pickering pushed to branch wip/llvm-ways at Glasgow Haskell Compiler / GHC


Commits:
31bbe13e by Matthew Pickering at 2022-10-13T18:10:08+01:00
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!

- - - - -


1 changed file:

- testsuite/config/ghc


Changes:

=====================================
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:



View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/31bbe13e8d287f4215acd08979142ec84be9fd5a

-- 
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/31bbe13e8d287f4215acd08979142ec84be9fd5a
You're receiving this email because of your account on gitlab.haskell.org.


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.haskell.org/pipermail/ghc-commits/attachments/20221013/7519c48f/attachment.html>


More information about the ghc-commits mailing list