summaryrefslogtreecommitdiff
path: root/chiselFrontend/src/main/scala/chisel3/NotStrict.scala
diff options
context:
space:
mode:
authorJim Lawson2016-09-29 11:44:09 -0700
committerJim Lawson2016-09-29 11:44:09 -0700
commiteb5e5dc30019be342b7a0534b425bf33b7984ce3 (patch)
tree1f04fd7157a17cc45fe1ff0835500d93809809fd /chiselFrontend/src/main/scala/chisel3/NotStrict.scala
parent12a651513541d6c96e3b709b424d5d3384179076 (diff)
Massive rename of CompileOptions.
Massage CompileOption names in an attempt to preserve default (Strict) CompileOptions in the absence of explicit imports. NOTE: Since the default is now strict, we may encounter errors when we generate connections for clients (i.e., in Vec.do_apply() when we wire up a sequence). We should really thread the CompileOptions through the macro system so the client's implicits are used.
Diffstat (limited to 'chiselFrontend/src/main/scala/chisel3/NotStrict.scala')
-rw-r--r--chiselFrontend/src/main/scala/chisel3/NotStrict.scala16
1 files changed, 0 insertions, 16 deletions
diff --git a/chiselFrontend/src/main/scala/chisel3/NotStrict.scala b/chiselFrontend/src/main/scala/chisel3/NotStrict.scala
deleted file mode 100644
index bb390e7c..00000000
--- a/chiselFrontend/src/main/scala/chisel3/NotStrict.scala
+++ /dev/null
@@ -1,16 +0,0 @@
-// See LICENSE for license details.
-
-package chisel3
-
-import chisel3.internal.ExplicitCompileOptions
-
-
-object NotStrict {
- implicit object CompileOptions extends ExplicitCompileOptions {
- val connectFieldsMustMatch = false
- val declaredTypeMustBeUnbound = false
- val requireIOWrap = false
- val dontTryConnectionsSwapped = false
- val dontAssumeDirectionality = false
- }
-}