diff options
| author | Jim Lawson | 2016-07-21 17:12:06 -0700 |
|---|---|---|
| committer | Jim Lawson | 2016-07-21 17:12:06 -0700 |
| commit | 7c9043859994b32bb07d2fce4ae61a7a3362a1b3 (patch) | |
| tree | 0f307e975393adf246e59aae0cc1b626e4ab4c7c /src/test/scala/chiselTests/Module.scala | |
| parent | d269818bdd4f2b71abebfaba9d7f8c9b4d488688 (diff) | |
Introduce chiselCloneType to distinguish from cloneType.
Still fails one test - DirectionSpec in Direction.scala
Diffstat (limited to 'src/test/scala/chiselTests/Module.scala')
| -rw-r--r-- | src/test/scala/chiselTests/Module.scala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/scala/chiselTests/Module.scala b/src/test/scala/chiselTests/Module.scala index 59451a2b..26953f5f 100644 --- a/src/test/scala/chiselTests/Module.scala +++ b/src/test/scala/chiselTests/Module.scala @@ -41,7 +41,7 @@ class ModuleVecTester(c: ModuleVec) extends Tester(c) { class ModuleWire extends Module { val io = IO(new SimpleIO) - val inc = Wire(Module(new PlusOne).io.cloneType) + val inc = Wire(Module(new PlusOne).io.chiselCloneType) inc.in := io.in io.out := inc.out } |
