aboutsummaryrefslogtreecommitdiff
path: root/src/test
diff options
context:
space:
mode:
authorAdam Izraelevitz2017-02-12 23:33:20 -0800
committerGitHub2017-02-12 23:33:20 -0800
commit7b2a3bc74d5fd0303c0056b4cb785fb34d7806bc (patch)
treede0e881ad213a0ff71a81cf41a3bbb997c4a246c /src/test
parent2f4ae9b4164cf415600de970b3ac5a1b9760efa5 (diff)
Changed fixed-point cat semantics to return uint (#436)
Diffstat (limited to 'src/test')
-rw-r--r--src/test/scala/firrtlTests/fixed/FixedTypeInferenceSpec.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/scala/firrtlTests/fixed/FixedTypeInferenceSpec.scala b/src/test/scala/firrtlTests/fixed/FixedTypeInferenceSpec.scala
index d567a6da..44fa1d29 100644
--- a/src/test/scala/firrtlTests/fixed/FixedTypeInferenceSpec.scala
+++ b/src/test/scala/firrtlTests/fixed/FixedTypeInferenceSpec.scala
@@ -206,7 +206,7 @@ class FixedTypeInferenceSpec extends FirrtlFlatSpec {
| input a : Fixed<10><<2>>
| input b : Fixed<7><<3>>
| input c : UInt<2>
- | output cat : Fixed
+ | output cat : UInt
| output head : UInt
| output tail : UInt
| output bits : UInt
@@ -220,7 +220,7 @@ class FixedTypeInferenceSpec extends FirrtlFlatSpec {
| input a : Fixed<10><<2>>
| input b : Fixed<7><<3>>
| input c : UInt<2>
- | output cat : Fixed<12><<4>>
+ | output cat : UInt<12>
| output head : UInt<3>
| output tail : UInt<7>
| output bits : UInt<4>