diff options
| author | Jim Lawson | 2016-10-06 10:50:58 -0700 |
|---|---|---|
| committer | GitHub | 2016-10-06 10:50:58 -0700 |
| commit | c9fe6005080f7695ff104253c1bf27388f749091 (patch) | |
| tree | 85041ff5e8f882311d1eddabd549f8d134f5e362 /src | |
| parent | 8251cbf93070b93a5db97b2d44db855b3c676b09 (diff) | |
| parent | a5aba40349e290c30280df25bc5b0ba848183469 (diff) | |
Merge pull request #307 from ucb-bar/clonefirrtldirection
clone firrtlDirection when cloning - Issue #306
Diffstat (limited to 'src')
| -rw-r--r-- | src/test/scala/chiselTests/ComplexAssign.scala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/scala/chiselTests/ComplexAssign.scala b/src/test/scala/chiselTests/ComplexAssign.scala index 0a1f31cc..c5a23f82 100644 --- a/src/test/scala/chiselTests/ComplexAssign.scala +++ b/src/test/scala/chiselTests/ComplexAssign.scala @@ -11,7 +11,7 @@ import chisel3.util._ class Complex[T <: Data](val re: T, val im: T) extends Bundle { override def cloneType: this.type = - new Complex(re.chiselCloneType, im.chiselCloneType).asInstanceOf[this.type] + new Complex(re.cloneType, im.cloneType).asInstanceOf[this.type] } class ComplexAssign(w: Int) extends Module { |
