diff options
author | Simon Marlow <simonmar@microsoft.com> | 2007-05-25 08:17:42 +0000 |
---|---|---|
committer | Simon Marlow <simonmar@microsoft.com> | 2007-05-25 08:17:42 +0000 |
commit | 51bd4101858e9f7d6d641e19a1b10f5a735dfd88 (patch) | |
tree | eb6b69016fe43deae1efc3980ae513f4876c9a0a /testsuite/config | |
parent | 77641d879edacf18bf8b66331e21c9833a241cce (diff) | |
download | haskell-51bd4101858e9f7d6d641e19a1b10f5a735dfd88.tar.gz |
remove unreg "way"; unreg is now all-or-nothing
Diffstat (limited to 'testsuite/config')
-rw-r--r-- | testsuite/config/ghc | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/testsuite/config/ghc b/testsuite/config/ghc index 999dedc1f7..58842f29b9 100644 --- a/testsuite/config/ghc +++ b/testsuite/config/ghc @@ -35,10 +35,6 @@ if (ghc_with_profiling == 1): config.compile_ways.append('profasm') config.run_ways.append('profasm') -if (ghc_with_unreg == 1): - config.compile_ways.append('unreg') - config.run_ways.append('unreg') - if (ghc_with_interpreter == 1): config.run_ways.append('ghci') @@ -53,7 +49,6 @@ config.way_flags = { 'optasm' : ['-O -fasm'], 'profc' : ['-O -prof -auto-all -fvia-C'], 'profasm' : ['-O -prof -auto-all -fasm'], - 'unreg' : ['-unreg'], 'ghci' : ['--interactive', '-v0'], 'extcore' : ['-fext-core'], 'optextcore' : ['-O -fext-core'], @@ -68,7 +63,6 @@ config.way_rts_flags = { 'optasm' : [], 'profc' : ['-p'], 'profasm' : ['-hc'], # test heap profiling too - 'unreg' : [], 'ghci' : [], 'extcore' : [], 'optextcore' : [], |