diff options
| author | Jack Koenig | 2018-04-13 12:45:21 -0700 |
|---|---|---|
| committer | GitHub | 2018-04-13 12:45:21 -0700 |
| commit | 78b15081bb1235a3aa07c1817a382444bcbd8f0f (patch) | |
| tree | 7d4c2a906566f1c3b37b2f9a4c52a106b38ae2d2 | |
| parent | 997fb0adf99813f5eb396fdc35026ee5c185445f (diff) | |
Remove infinitely recursive function (#790)
h/t @sdtwigg
| -rw-r--r-- | src/main/scala/firrtl/Utils.scala | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/main/scala/firrtl/Utils.scala b/src/main/scala/firrtl/Utils.scala index 61078387..30236231 100644 --- a/src/main/scala/firrtl/Utils.scala +++ b/src/main/scala/firrtl/Utils.scala @@ -484,7 +484,6 @@ object Utils extends LazyLogging { case vx => throwInternalError(s"get_field: shouldn't be here - $v") } - def times(flip: Orientation, d: Direction): Direction = times(flip, d) def times(d: Direction,flip: Orientation): Direction = flip match { case Default => d case Flip => swap(d) |
