diff options
| author | SingularityKChen | 2021-10-28 21:33:16 +0800 |
|---|---|---|
| committer | GitHub | 2021-10-28 13:33:16 +0000 |
| commit | e298b01d3086e78c187cb1c3611a206216499031 (patch) | |
| tree | b14bae411a12e50fbdb21bcfd6c2b9ea39cdab29 /src | |
| parent | 5532d5024f70dc84041560a3e70029deda681e01 (diff) | |
typo: correct Error Info (#2398)
+ correct the Error Info of "At least one dedupable annotation..."
Diffstat (limited to 'src')
| -rw-r--r-- | src/main/scala/firrtl/backends/experimental/rtlil/RtlilEmitter.scala | 2 | ||||
| -rw-r--r-- | src/main/scala/firrtl/backends/verilog/VerilogEmitter.scala | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/main/scala/firrtl/backends/experimental/rtlil/RtlilEmitter.scala b/src/main/scala/firrtl/backends/experimental/rtlil/RtlilEmitter.scala index 97603dbb..8c755e3d 100644 --- a/src/main/scala/firrtl/backends/experimental/rtlil/RtlilEmitter.scala +++ b/src/main/scala/firrtl/backends/experimental/rtlil/RtlilEmitter.scala @@ -1043,7 +1043,7 @@ private[firrtl] class EmissionOptions(annotations: AnnotationSeq) { val (_, _, target) = a.dedup.get if (!target.isLocal) { throw new FirrtlUserException( - "At least one dedupable annotation did not deduplicate: got non-local annotation $a from [[DedupAnnotationsTransform]]" + s"At least one dedupable annotation did not deduplicate: got non-local annotation $a from [[DedupAnnotationsTransform]]" ) } case _ => diff --git a/src/main/scala/firrtl/backends/verilog/VerilogEmitter.scala b/src/main/scala/firrtl/backends/verilog/VerilogEmitter.scala index 4f62f27e..bef4be1f 100644 --- a/src/main/scala/firrtl/backends/verilog/VerilogEmitter.scala +++ b/src/main/scala/firrtl/backends/verilog/VerilogEmitter.scala @@ -515,7 +515,7 @@ class VerilogEmitter extends SeqTransform with Emitter { val (_, _, target) = a.dedup.get if (!target.isLocal) { throw new FirrtlUserException( - "At least one dedupable annotation did not deduplicate: got non-local annotation $a from [[DedupAnnotationsTransform]]" + s"At least one dedupable annotation did not deduplicate: got non-local annotation $a from [[DedupAnnotationsTransform]]" ) } case _ => |
