aboutsummaryrefslogtreecommitdiff
path: root/src/main/scala/firrtl/options
diff options
context:
space:
mode:
authorSchuyler Eldridge2019-12-06 13:11:46 -0500
committermergify[bot]2019-12-06 18:11:46 +0000
commit63611adfa39f5082dd0ab0eb4a3d16a80d5636e2 (patch)
tree1322b1e166d32544dd4e6def29d1a45fb5920bea /src/main/scala/firrtl/options
parent469ef3ee37ed4576ec02b08117498f712f4e343f (diff)
Move --no-dedup from stage-global to firrtl-local (#1265)
This moves the --no-dedup option to be FIRRTL-stage specific as opposed to a global option common to all stages. Signed-off-by: Schuyler Eldridge <schuyler.eldridge@ibm.com>
Diffstat (limited to 'src/main/scala/firrtl/options')
-rw-r--r--src/main/scala/firrtl/options/Shell.scala4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/main/scala/firrtl/options/Shell.scala b/src/main/scala/firrtl/options/Shell.scala
index 7e338332..28c0554a 100644
--- a/src/main/scala/firrtl/options/Shell.scala
+++ b/src/main/scala/firrtl/options/Shell.scala
@@ -3,7 +3,6 @@
package firrtl.options
import firrtl.AnnotationSeq
-import firrtl.transforms.NoCircuitDedupAnnotation
import logger.{LogLevelAnnotation, ClassLogLevelAnnotation, LogFileAnnotation, LogClassNamesAnnotation}
@@ -65,8 +64,7 @@ class Shell(val applicationName: String) {
ProgramArgsAnnotation.addOptions(parser)
Seq( TargetDirAnnotation,
InputAnnotationFileAnnotation,
- OutputAnnotationFileAnnotation,
- NoCircuitDedupAnnotation)
+ OutputAnnotationFileAnnotation )
.foreach(_.addOptions(parser))
parser.opt[Unit]("show-registrations")