diff options
| author | Jack Koenig | 2017-06-28 17:52:56 -0700 |
|---|---|---|
| committer | Jack Koenig | 2017-06-28 17:52:56 -0700 |
| commit | 39665e1f74cfe8243067442cccf4e7eab66ade68 (patch) | |
| tree | 8ba403e298c39bc6104f32a93754079dc458752a /src/test/scala/firrtlTests/CInferMDirSpec.scala | |
| parent | 818cfde4ad42ffa9ee30d0f9ae72533ede80e4ce (diff) | |
Promote ConstProp to a transform
Diffstat (limited to 'src/test/scala/firrtlTests/CInferMDirSpec.scala')
| -rw-r--r-- | src/test/scala/firrtlTests/CInferMDirSpec.scala | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/test/scala/firrtlTests/CInferMDirSpec.scala b/src/test/scala/firrtlTests/CInferMDirSpec.scala index 0d31038a..299142d9 100644 --- a/src/test/scala/firrtlTests/CInferMDirSpec.scala +++ b/src/test/scala/firrtlTests/CInferMDirSpec.scala @@ -5,6 +5,7 @@ package firrtlTests import firrtl._ import firrtl.ir._ import firrtl.passes._ +import firrtl.transforms._ import firrtl.Mappers._ import annotations._ @@ -39,7 +40,7 @@ class CInferMDir extends LowTransformSpec { def transform = new SeqTransform { def inputForm = LowForm def outputForm = LowForm - def transforms = Seq(ConstProp, CInferMDirCheckPass) + def transforms = Seq(new ConstantPropagation, CInferMDirCheckPass) } "Memory" should "have correct mem port directions" in { |
