diff options
| author | Albert Magyar | 2020-04-04 13:14:06 -0700 |
|---|---|---|
| committer | Albert Magyar | 2020-04-06 12:31:06 -0700 |
| commit | bc83b4d11588e21cde591acff944ea419bec1fa5 (patch) | |
| tree | f704dc74e6e7f4b29fa31ac9af0951d99ec3cdb7 /src/test | |
| parent | 33f8eaeb6e1905f76f10264d29bc72b03f583743 (diff) | |
Remove deprecated ResolveGenders and CheckGenders
* Remove few remaining uses of these passes from FIRRTL codebase
Diffstat (limited to 'src/test')
| -rw-r--r-- | src/test/scala/firrtlTests/interval/IntervalSpec.scala | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/test/scala/firrtlTests/interval/IntervalSpec.scala b/src/test/scala/firrtlTests/interval/IntervalSpec.scala index 3914aba0..5d82f6b5 100644 --- a/src/test/scala/firrtlTests/interval/IntervalSpec.scala +++ b/src/test/scala/firrtlTests/interval/IntervalSpec.scala @@ -41,7 +41,7 @@ class IntervalSpec extends FirrtlFlatSpec { } "Interval types" should "infer bp correctly" in { - val passes = Seq(ToWorkingIR, InferTypes, ResolveGenders, new InferBinaryPoints()) + val passes = Seq(ToWorkingIR, InferTypes, ResolveFlows, new InferBinaryPoints()) val input = """circuit Unit : | module Unit : @@ -62,7 +62,7 @@ class IntervalSpec extends FirrtlFlatSpec { } "Interval types" should "trim known intervals correctly" in { - val passes = Seq(ToWorkingIR, InferTypes, ResolveGenders, new InferBinaryPoints(), new TrimIntervals()) + val passes = Seq(ToWorkingIR, InferTypes, ResolveFlows, new InferBinaryPoints(), new TrimIntervals()) val input = """circuit Unit : | module Unit : @@ -83,7 +83,7 @@ class IntervalSpec extends FirrtlFlatSpec { } "Interval types" should "infer intervals correctly" in { - val passes = Seq(ToWorkingIR, InferTypes, ResolveGenders, new InferBinaryPoints(), new TrimIntervals(), new InferWidths()) + val passes = Seq(ToWorkingIR, InferTypes, ResolveFlows, new InferBinaryPoints(), new TrimIntervals(), new InferWidths()) val input = """circuit Unit : | module Unit : @@ -104,7 +104,7 @@ class IntervalSpec extends FirrtlFlatSpec { } "Interval types" should "be removed correctly" in { - val passes = Seq(ToWorkingIR, InferTypes, ResolveGenders, new InferBinaryPoints(), new TrimIntervals(), new InferWidths(), new RemoveIntervals()) + val passes = Seq(ToWorkingIR, InferTypes, ResolveFlows, new InferBinaryPoints(), new TrimIntervals(), new InferWidths(), new RemoveIntervals()) val input = """circuit Unit : | module Unit : @@ -133,7 +133,7 @@ class IntervalSpec extends FirrtlFlatSpec { } "Interval types" should "infer multiplication by zero correctly" in { - val passes = Seq(ToWorkingIR, InferTypes, ResolveGenders, new InferBinaryPoints(), new TrimIntervals(), new InferWidths()) + val passes = Seq(ToWorkingIR, InferTypes, ResolveFlows, new InferBinaryPoints(), new TrimIntervals(), new InferWidths()) val input = s"""circuit Unit : | module Unit : @@ -147,7 +147,7 @@ class IntervalSpec extends FirrtlFlatSpec { } "Interval types" should "infer muxes correctly" in { - val passes = Seq(ToWorkingIR, InferTypes, ResolveGenders, new InferBinaryPoints(), new TrimIntervals(), new InferWidths()) + val passes = Seq(ToWorkingIR, InferTypes, ResolveFlows, new InferBinaryPoints(), new TrimIntervals(), new InferWidths()) val input = s"""circuit Unit : | module Unit : @@ -161,7 +161,7 @@ class IntervalSpec extends FirrtlFlatSpec { executeTest(input, check.split("\n") map normalized, passes) } "Interval types" should "infer dshl correctly" in { - val passes = Seq(ToWorkingIR, InferTypes, ResolveKinds, ResolveGenders, new InferBinaryPoints(), new TrimIntervals, new InferWidths()) + val passes = Seq(ToWorkingIR, InferTypes, ResolveKinds, ResolveFlows, new InferBinaryPoints(), new TrimIntervals, new InferWidths()) val input = s"""circuit Unit : | module Unit : @@ -174,7 +174,7 @@ class IntervalSpec extends FirrtlFlatSpec { executeTest(input, check.split("\n") map normalized, passes) } "Interval types" should "infer asInterval correctly" in { - val passes = Seq(ToWorkingIR, InferTypes, ResolveGenders, new InferWidths()) + val passes = Seq(ToWorkingIR, InferTypes, ResolveFlows, new InferWidths()) val input = s"""circuit Unit : | module Unit : @@ -318,7 +318,7 @@ class IntervalSpec extends FirrtlFlatSpec { executeTest(input, check.split("\n") map normalized, passes) } "Interval types" should "remove negative binary points" in { - val passes = Seq(ToWorkingIR, InferTypes, ResolveGenders, new InferBinaryPoints(), new TrimIntervals(), new InferWidths(), new RemoveIntervals()) + val passes = Seq(ToWorkingIR, InferTypes, ResolveFlows, new InferBinaryPoints(), new TrimIntervals(), new InferWidths(), new RemoveIntervals()) val input = s"""circuit Unit : | module Unit : |
