aboutsummaryrefslogtreecommitdiffstats
path: root/src/VeriFuzz/Sim
diff options
context:
space:
mode:
authorYann Herklotz <git@ymhg.org>2019-05-09 13:21:30 +0100
committerYann Herklotz <git@ymhg.org>2019-05-09 13:21:30 +0100
commit798b929300bbef7ceaae83fad04fc556f7d0a8d2 (patch)
tree6d90024756769dfdcd25cb90d916c0d0dfcc59b8 /src/VeriFuzz/Sim
parent1457e76e85bf7407434245a0a35d9c434a736b35 (diff)
downloadverismith-798b929300bbef7ceaae83fad04fc556f7d0a8d2.tar.gz
verismith-798b929300bbef7ceaae83fad04fc556f7d0a8d2.zip
Fix unusable UNPACK
Diffstat (limited to 'src/VeriFuzz/Sim')
-rw-r--r--src/VeriFuzz/Sim/Yosys.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/VeriFuzz/Sim/Yosys.hs b/src/VeriFuzz/Sim/Yosys.hs
index b2ad5cb..b7fae6b 100644
--- a/src/VeriFuzz/Sim/Yosys.hs
+++ b/src/VeriFuzz/Sim/Yosys.hs
@@ -32,7 +32,7 @@ import VeriFuzz.Verilog.AST
import VeriFuzz.Verilog.CodeGen
import VeriFuzz.Verilog.Mutate
-data Yosys = Yosys { yosysBin :: {-# UNPACK #-} !(Maybe FilePath)
+data Yosys = Yosys { yosysBin :: !(Maybe FilePath)
, yosysDesc :: {-# UNPACK #-} !Text
, yosysOutput :: {-# UNPACK #-} !FilePath
}