aboutsummaryrefslogtreecommitdiffstats
path: root/src/VeriFuzz/Verilog/Parser.hs
diff options
context:
space:
mode:
authorYann Herklotz <git@ymhg.org>2019-04-09 17:32:11 +0100
committerYann Herklotz <git@ymhg.org>2019-04-09 17:32:11 +0100
commitaefb46596f3f2302540a83b2be8b042232822a2f (patch)
tree38afcf0c16635e386fff37c496e1ff5740718cb0 /src/VeriFuzz/Verilog/Parser.hs
parentc1a832419a28ac074cbccbeb7060afd22c36d033 (diff)
downloadverismith-aefb46596f3f2302540a83b2be8b042232822a2f.tar.gz
verismith-aefb46596f3f2302540a83b2be8b042232822a2f.zip
Add probabilities to generation of expressions
Diffstat (limited to 'src/VeriFuzz/Verilog/Parser.hs')
-rw-r--r--src/VeriFuzz/Verilog/Parser.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/VeriFuzz/Verilog/Parser.hs b/src/VeriFuzz/Verilog/Parser.hs
index 1a954fa..8c9a986 100644
--- a/src/VeriFuzz/Verilog/Parser.hs
+++ b/src/VeriFuzz/Verilog/Parser.hs
@@ -106,7 +106,7 @@ systemFunc s = satisfy' matchId
parseFunction :: Parser Function
parseFunction =
systemFunc "$unsigned"
- $> UnSignedFunc
+ $> UnsignedFunc
<|> systemFunc "$signed"
$> SignedFunc