Skip to content
This repository has been archived by the owner on Aug 20, 2024. It is now read-only.

Fix CheckWidths error message for uninferred width #2196

Merged
merged 1 commit into from
Apr 22, 2021
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 src/main/scala/firrtl/passes/CheckWidths.scala
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ object CheckWidths extends Pass {
val MaxWidth = 1000000
val DshlMaxWidth = getUIntWidth(MaxWidth)
class UninferredWidth(info: Info, target: String)
extends PassException(s"""|$info : Uninferred width for target below.serialize}. (Did you forget to assign to it?)
extends PassException(s"""|$info : Uninferred width for target below. (Did you forget to assign to it?)
|$target""".stripMargin)
class UninferredBound(info: Info, target: String, bound: String)
extends PassException(s"""|$info : Uninferred $bound bound for target. (Did you forget to assign to it?)
Expand Down