diff options
| author | Jack Koenig | 2021-09-11 00:29:10 -0700 |
|---|---|---|
| committer | GitHub | 2021-09-11 00:29:10 -0700 |
| commit | beb5bc9850fd69adff36f38fb00a1f68bb1918fe (patch) | |
| tree | 7288c60abd0a4507df57acddea80232cdae9ca95 /src/test/scala/firrtlTests/ReplSeqMemTests.scala | |
| parent | c7917c88f8e8aaa93255a731c75f3e0e6901e2fb (diff) | |
Remove BlackBoxSourceHelper from ReplaceMemTransform (#2355)
BlackBoxSourceHelper should only run late in compilation to allow
transforms to tweak its behavior (eg. changing BlackBoxTargetDirAnno).
Diffstat (limited to 'src/test/scala/firrtlTests/ReplSeqMemTests.scala')
| -rw-r--r-- | src/test/scala/firrtlTests/ReplSeqMemTests.scala | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/test/scala/firrtlTests/ReplSeqMemTests.scala b/src/test/scala/firrtlTests/ReplSeqMemTests.scala index 9f83bec2..924c767f 100644 --- a/src/test/scala/firrtlTests/ReplSeqMemTests.scala +++ b/src/test/scala/firrtlTests/ReplSeqMemTests.scala @@ -39,7 +39,8 @@ class ReplSeqMemSpec extends SimpleTransformSpec { def outputForm = LowForm def transforms = Seq(new ConstantPropagation, CommonSubexpressionElimination, new DeadCodeElimination, RemoveEmpty) - } + }, + new BlackBoxSourceHelper ) def checkMemConf(circuitState: CircuitState, mems: Set[MemConf]) { |
