aboutsummaryrefslogtreecommitdiffstats
path: root/src/VeriFuzz/Parser.hs
diff options
context:
space:
mode:
authorYann Herklotz Grave <git@yannherklotzgrave.com>2019-02-16 22:22:51 +0000
committerYann Herklotz Grave <git@yannherklotzgrave.com>2019-02-16 22:22:51 +0000
commit5f76e8bd89b231ad099448d37f3f04be41fc78da (patch)
tree9fea07fec145d8e02315a3821ebd60a3614e2ef4 /src/VeriFuzz/Parser.hs
parentf9159b9e1dfaf9a0b449b632913c8efa1b6674ad (diff)
downloadverismith-5f76e8bd89b231ad099448d37f3f04be41fc78da.tar.gz
verismith-5f76e8bd89b231ad099448d37f3f04be41fc78da.zip
Fix CodeGen bug and add more property tests
Diffstat (limited to 'src/VeriFuzz/Parser.hs')
-rw-r--r--src/VeriFuzz/Parser.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/VeriFuzz/Parser.hs b/src/VeriFuzz/Parser.hs
index 48dafe2..b4831d1 100644
--- a/src/VeriFuzz/Parser.hs
+++ b/src/VeriFuzz/Parser.hs
@@ -205,7 +205,7 @@ parseModDecl = do
_ <- symbol ";"
modItem <- lexeme $ option [] . try $ many1 parseModItem
_ <- reserved "endmodule"
- return $ ModDecl name [defaultPort "y"] modL modItem
+ return $ ModDecl name [] modL modItem
parseDescription :: Parser Description
parseDescription = Description <$> lexeme parseModDecl