diff options
| author | Jiuyang Liu | 2020-11-10 00:12:06 +0000 |
|---|---|---|
| committer | GitHub | 2020-11-10 00:12:06 +0000 |
| commit | 92af63c599fc480f6480ee22f23763f54881085f (patch) | |
| tree | b4fde701d44a0d5a0d44d3a05489a61481762a7f /src/main/scala/firrtl/Utils.scala | |
| parent | fe95544d573fff9bb114b3302986aa746e1f4763 (diff) | |
Refactor emiter (#1879)
* split big Emitter to submodules.
* fix all deprecated warning.
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
Diffstat (limited to 'src/main/scala/firrtl/Utils.scala')
| -rw-r--r-- | src/main/scala/firrtl/Utils.scala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/scala/firrtl/Utils.scala b/src/main/scala/firrtl/Utils.scala index ac987456..a52e451f 100644 --- a/src/main/scala/firrtl/Utils.scala +++ b/src/main/scala/firrtl/Utils.scala @@ -307,7 +307,7 @@ object Utils extends LazyLogging { onExp(expression) ReferenceTarget(main, module, Nil, ref, tokens.toSeq) } - @deprecated("get_flip is fundamentally slow, use to_flip(flow(expr))", "1.2") + @deprecated("get_flip is fundamentally slow, use to_flip(flow(expr))", "FIRRTL 1.2") def get_flip(t: Type, i: Int, f: Orientation): Orientation = { if (i >= get_size(t)) throwInternalError(s"get_flip: shouldn't be here - $i >= get_size($t)") t match { |
