From e07248b8f6022fafdb84f5d1c0ebe3fc90a5475a Mon Sep 17 00:00:00 2001 From: Richard Lin Date: Thu, 13 Apr 2017 22:59:00 -0700 Subject: Module Hierarchy Refactor (#469) --- chiselFrontend/src/main/scala/chisel3/core/CompileOptions.scala | 6 ------ 1 file changed, 6 deletions(-) (limited to 'chiselFrontend/src/main/scala/chisel3/core/CompileOptions.scala') diff --git a/chiselFrontend/src/main/scala/chisel3/core/CompileOptions.scala b/chiselFrontend/src/main/scala/chisel3/core/CompileOptions.scala index 482c1566..803e6c0f 100644 --- a/chiselFrontend/src/main/scala/chisel3/core/CompileOptions.scala +++ b/chiselFrontend/src/main/scala/chisel3/core/CompileOptions.scala @@ -12,8 +12,6 @@ trait CompileOptions { val connectFieldsMustMatch: Boolean // When creating an object that takes a type argument, the argument must be unbound (a pure type). val declaredTypeMustBeUnbound: Boolean - // Module IOs should be wrapped in an IO() to define their bindings before the reset of the module is defined. - val requireIOWrap: Boolean // If a connection operator fails, don't try the connection with the operands (source and sink) reversed. val dontTryConnectionsSwapped: Boolean // If connection directionality is not explicit, do not use heuristics to attempt to determine it. @@ -44,8 +42,6 @@ object ExplicitCompileOptions { val connectFieldsMustMatch: Boolean, // When creating an object that takes a type argument, the argument must be unbound (a pure type). val declaredTypeMustBeUnbound: Boolean, - // Module IOs should be wrapped in an IO() to define their bindings before the reset of the module is defined. - val requireIOWrap: Boolean, // If a connection operator fails, don't try the connection with the operands (source and sink) reversed. val dontTryConnectionsSwapped: Boolean, // If connection directionality is not explicit, do not use heuristics to attempt to determine it. @@ -63,7 +59,6 @@ object ExplicitCompileOptions { implicit val NotStrict = new CompileOptionsClass ( connectFieldsMustMatch = false, declaredTypeMustBeUnbound = false, - requireIOWrap = false, dontTryConnectionsSwapped = false, dontAssumeDirectionality = false, deprecateOldDirectionMethods = false, @@ -75,7 +70,6 @@ object ExplicitCompileOptions { implicit val Strict = new CompileOptionsClass ( connectFieldsMustMatch = true, declaredTypeMustBeUnbound = true, - requireIOWrap = true, dontTryConnectionsSwapped = true, dontAssumeDirectionality = true, deprecateOldDirectionMethods = true, -- cgit v1.2.3