diff options
| author | Donggyu Kim | 2016-08-25 18:17:11 -0700 |
|---|---|---|
| committer | Donggyu Kim | 2016-09-08 13:30:20 -0700 |
| commit | 488aec3a35b6fa99a8150702128c9c1e87246644 (patch) | |
| tree | 5194cbfb75340990bc7ba0cb287b13151e73ee41 /src/test | |
| parent | de32fe8128105413563a5fa746fcebf24c86d0a3 (diff) | |
remove Utils.{AND, OR, NOT, EQV}
hidden const props not desirable
Diffstat (limited to 'src/test')
| -rw-r--r-- | src/test/scala/firrtlTests/UnitTests.scala | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/test/scala/firrtlTests/UnitTests.scala b/src/test/scala/firrtlTests/UnitTests.scala index 2d1bbdc1..7feb4a00 100644 --- a/src/test/scala/firrtlTests/UnitTests.scala +++ b/src/test/scala/firrtlTests/UnitTests.scala @@ -203,7 +203,8 @@ class UnitTests extends FirrtlFlatSpec { InferWidths, PullMuxes, ExpandConnects, - RemoveAccesses + RemoveAccesses, + ConstProp ) val input = """circuit AssignViaDeref : @@ -221,7 +222,7 @@ class UnitTests extends FirrtlFlatSpec { val check = Seq( """wire GEN_0 : { a : UInt<8>}""", """GEN_0.a <= table[0].a""", - """when eq(UInt<1>("h1"), UInt<1>("h1")) :""", + """when UInt<1>("h1") :""", """GEN_0.a <= table[1].a""", """wire GEN_1 : UInt<8>""", """when eq(UInt<1>("h0"), GEN_0.a) :""", |
