diff options
| author | Edward Wang | 2018-08-22 09:20:01 -0700 |
|---|---|---|
| committer | edwardcwang | 2018-08-22 11:55:38 -0700 |
| commit | b72f5b8a250547766b89fc9f91eb7076ad8223a8 (patch) | |
| tree | c936d59154c45bcd6b02db1e28ef6c4ea503debe /chiselFrontend/src | |
| parent | 3491ba89859e4b45b557485025ffe8cf5e298b54 (diff) | |
Update class name in error message
Diffstat (limited to 'chiselFrontend/src')
| -rw-r--r-- | chiselFrontend/src/main/scala/chisel3/core/Aggregate.scala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chiselFrontend/src/main/scala/chisel3/core/Aggregate.scala b/chiselFrontend/src/main/scala/chisel3/core/Aggregate.scala index 4ffbb893..235b1d5a 100644 --- a/chiselFrontend/src/main/scala/chisel3/core/Aggregate.scala +++ b/chiselFrontend/src/main/scala/chisel3/core/Aggregate.scala @@ -569,7 +569,7 @@ abstract class Bundle(implicit compileOptions: CompileOptions) extends Record { // Ignore empty Seq() case d: Data => throwException("Public Seq members cannot be used to define Bundle elements " + s"(found public Seq member '${m.getName}'). " + - "Either use a Vec() if all elements are of the same type, or HeterogeneousVec() if the elements " + + "Either use a Vec if all elements are of the same type, or MixedVec if the elements " + "are of different types. If this Seq member is not intended to construct RTL, mix in the trait " + "IgnoreSeqInBundle.") case _ => // don't care about non-Data Seq |
