aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/main/scala/firrtl/transforms/BlackBoxSourceHelper.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/scala/firrtl/transforms/BlackBoxSourceHelper.scala b/src/main/scala/firrtl/transforms/BlackBoxSourceHelper.scala
index 94078dc0..aaae284b 100644
--- a/src/main/scala/firrtl/transforms/BlackBoxSourceHelper.scala
+++ b/src/main/scala/firrtl/transforms/BlackBoxSourceHelper.scala
@@ -45,7 +45,7 @@ case class BlackBoxInline(name: String, text: String) extends BlackBoxSource {
object BlackBoxSourceAnnotation {
def apply(targetDir: ModuleName, value: String): Annotation = {
assert(BlackBoxSource.parse(value).isDefined)
- Annotation(targetDir, classOf[DedupModules], value)
+ Annotation(targetDir, classOf[BlackBoxSourceHelper], value)
}
def unapply(a: Annotation): Option[(ModuleName, BlackBoxSource)] = a match {