diff options
| author | Jack Koenig | 2017-12-14 15:36:19 -0800 |
|---|---|---|
| committer | GitHub | 2017-12-14 15:36:19 -0800 |
| commit | 74de925ab437ef999a92b36630ebc4965992fdbf (patch) | |
| tree | 6d3c6bc52ec90820703fd8e91e3b7395836d2fee /src/test/scala/chiselTests/IOCompatibility.scala | |
| parent | ef1400f45404210121f53b38585602a8c7c2560e (diff) | |
Fix a few compiler warnings (#738)
Make InvalidateAPI emit to a test directory
Add *.swp and test_run_dir to .gitignore
Diffstat (limited to 'src/test/scala/chiselTests/IOCompatibility.scala')
| -rw-r--r-- | src/test/scala/chiselTests/IOCompatibility.scala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/scala/chiselTests/IOCompatibility.scala b/src/test/scala/chiselTests/IOCompatibility.scala index 28058963..af64c9f3 100644 --- a/src/test/scala/chiselTests/IOCompatibility.scala +++ b/src/test/scala/chiselTests/IOCompatibility.scala @@ -30,7 +30,7 @@ class IOCModuleVec(val n: Int) extends Module { class IOCModuleWire extends Module { val io = IO(new IOCSimpleIO) - val inc = Wire(Module(new IOCPlusOne).io.chiselCloneType) + val inc = Wire(chiselTypeOf(Module(new IOCPlusOne).io)) inc.in := io.in io.out := inc.out } |
