Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Libraries/VerilogRepr/VerilogRepr.bs
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ instance TypeId' (NumArg i) where
bsType' _ = integerToString $ valueOf i
verilogTypeId' _ = integerToString $ valueOf i

instance TypeId' ConArg where
instance TypeId' OtherConArg where

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is it necessary to add instances for StarConArg and NumConArg too?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, our internal version of the library has that, and other changes. I intend to update this in a separate pull request (there is some work to do now in pulling out some special cases for things in our code base.) This is just a minimal change to make it compile with the generics changes, for now.

bsType' _ =
error "Demanded Bluespec type of a higher-kinded type argument"
verilogTypeId' _ =
Expand Down
Loading