summaryrefslogtreecommitdiff
path: root/src/main/scala/chisel3/util/experimental/group.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/scala/chisel3/util/experimental/group.scala')
-rw-r--r--src/main/scala/chisel3/util/experimental/group.scala8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/main/scala/chisel3/util/experimental/group.scala b/src/main/scala/chisel3/util/experimental/group.scala
index 202c95d8..ac687da7 100644
--- a/src/main/scala/chisel3/util/experimental/group.scala
+++ b/src/main/scala/chisel3/util/experimental/group.scala
@@ -51,13 +51,9 @@ object group {
newInstance: String,
outputSuffix: Option[String] = None,
inputSuffix: Option[String] = None
- )(
- implicit compileOptions: CompileOptions
): Unit = {
- if (compileOptions.checkSynthesizable) {
- components.foreach { data =>
- requireIsHardware(data, s"Component ${data.toString} is marked to group, but is not bound.")
- }
+ components.foreach { data =>
+ requireIsHardware(data, s"Component ${data.toString} is marked to group, but is not bound.")
}
annotate(new ChiselAnnotation with RunFirrtlTransform {
def toFirrtl = GroupAnnotation(components.map(_.toNamed), newModule, newInstance, outputSuffix, inputSuffix)