summaryrefslogtreecommitdiff
path: root/testsuite/config
diff options
context:
space:
mode:
authorSimon Marlow <simonmar@microsoft.com>2007-01-23 11:51:04 +0000
committerSimon Marlow <simonmar@microsoft.com>2007-01-23 11:51:04 +0000
commitd70bb6d9c2b22932ee077b81bd1eacb2f808b2df (patch)
tree6e921d07a8f36d8fe11dccc075d20d207c1f3179 /testsuite/config
parent13fb8531ca1b3dc3508596e6cb15a06195ee4e3c (diff)
downloadhaskell-d70bb6d9c2b22932ee077b81bd1eacb2f808b2df.tar.gz
now that -O implies -fasm, not -fvia-C, we must explicitly test -fvia-C
Diffstat (limited to 'testsuite/config')
-rw-r--r--testsuite/config/ghc8
1 files changed, 4 insertions, 4 deletions
diff --git a/testsuite/config/ghc b/testsuite/config/ghc
index 94b36d0c02..71e01e9515 100644
--- a/testsuite/config/ghc
+++ b/testsuite/config/ghc
@@ -44,9 +44,9 @@ if (ghc_with_threaded_rts == 1):
config.way_flags = {
'normal' : [],
- 'opt' : ['-O'],
+ 'optc' : ['-O -fvia-C'],
'optasm' : ['-O -fasm'],
- 'prof' : ['-O -prof -auto-all'],
+ 'profc' : ['-O -prof -auto-all -fvia-C'],
'profasm' : ['-O -prof -auto-all -fasm'],
'unreg' : ['-unreg'],
'ghci' : ['--interactive', '-v0'],
@@ -59,9 +59,9 @@ config.way_flags = {
config.way_rts_flags = {
'normal' : [],
- 'opt' : [],
+ 'optc' : [],
'optasm' : [],
- 'prof' : ['-p'],
+ 'profc' : ['-p'],
'profasm' : ['-hc'], # test heap profiling too
'unreg' : [],
'ghci' : [],