From 7f771d36ea80bb51e5bef6e985e4fb0b600e199e Mon Sep 17 00:00:00 2001 From: Angie Date: Wed, 22 Feb 2017 17:46:27 -0800 Subject: fix bug in blackboxsourcehelper apply -- pointed to wrong transform --- src/main/scala/firrtl/transforms/BlackBoxSourceHelper.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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 { -- cgit v1.2.3