[commit: ghc] ghc-lwc2: Edited MVar header. Fixed make args for sieve benchmark. (521f55a)
Sivaramakrishnan Krishnamoorthy Chandrasekaran
t-sichan at microsoft.com
Sun Mar 3 22:34:35 CET 2013
Repository : http://darcs.haskell.org/ghc.git/
On branch : ghc-lwc2
http://hackage.haskell.org/trac/ghc/changeset/521f55aff6910d7400dc4c48cd101c146186febb
>---------------------------------------------------------------
commit 521f55aff6910d7400dc4c48cd101c146186febb
Author: KC Sivaramakrishnan <chandras at cs.purdue.edu>
Date: Sat Mar 2 02:58:03 2013 -0500
Edited MVar header. Fixed make args for sieve benchmark.
>---------------------------------------------------------------
libraries/lwconc/LwConc/MVar.hs | 3 +--
tests/Benchmarks/Sieve/Makefile | 2 +-
2 files changed, 2 insertions(+), 3 deletions(-)
diff --git a/libraries/lwconc/LwConc/MVar.hs b/libraries/lwconc/LwConc/MVar.hs
index 1f73047..e8305ae 100644
--- a/libraries/lwconc/LwConc/MVar.hs
+++ b/libraries/lwconc/LwConc/MVar.hs
@@ -10,7 +10,7 @@
-----------------------------------------------------------------------------
-- |
--- Module : MVar
+-- Module : LwConc.MVar
-- Copyright : (c) The University of Glasgow 2001
-- License : BSD-style (see the file libraries/base/LICENSE)
--
@@ -40,7 +40,6 @@ import LwConc.Substrate
import qualified Data.Sequence as Seq
import GHC.IORef
-
newtype MVar a = MVar (PVar (MVPState a)) deriving (Eq)
data MVPState a = Full a (Seq.Seq (a, PTM()))
| Empty (Seq.Seq (IORef a, PTM()))
diff --git a/tests/Benchmarks/Sieve/Makefile b/tests/Benchmarks/Sieve/Makefile
index f32dfca..2b8ba3d 100644
--- a/tests/Benchmarks/Sieve/Makefile
+++ b/tests/Benchmarks/Sieve/Makefile
@@ -3,6 +3,6 @@ TARGET := sieve-vanilla.bin sieve-lwc.bin
include ../../config.mk
TOP := ../../../
-GHC_OPTS_EXTRA=-threaded -XBangPatterns -prof -auto-all
+GHC_OPTS_EXTRA=-threaded -XBangPatterns -prof
all: $(TARGET)
More information about the ghc-commits
mailing list