summaryrefslogtreecommitdiff
path: root/src/main
diff options
context:
space:
mode:
authorJack Koenig2019-12-06 12:11:28 -0800
committermergify[bot]2019-12-06 20:11:28 +0000
commit69ae14b485c67834ad3c9c518ef080cf75ce9b1d (patch)
tree79e09d309b51dbc9ecdfd442c968b89bf81079c2 /src/main
parent03bbb258a4ce6800b692e20a579757e4f054fa63 (diff)
Revert "Compat compile options macro (#1253)" (#1268)
This reverts commit 85fe90d5b7ed4e1101b0b3959a1d362eb93915ac.
Diffstat (limited to 'src/main')
-rw-r--r--src/main/scala/chisel3/compatibility.scala22
1 files changed, 3 insertions, 19 deletions
diff --git a/src/main/scala/chisel3/compatibility.scala b/src/main/scala/chisel3/compatibility.scala
index 432446cb..02dfa329 100644
--- a/src/main/scala/chisel3/compatibility.scala
+++ b/src/main/scala/chisel3/compatibility.scala
@@ -9,17 +9,11 @@ package object Chisel { // scalastyle:ignore package.object.name number.of.t
import chisel3.internal.firrtl.Width
import scala.language.experimental.macros
- import scala.reflect.macros.blackbox.Context
- import scala.annotation.{StaticAnnotation, compileTimeOnly}
+ import scala.annotation.StaticAnnotation
+ import scala.annotation.compileTimeOnly
import scala.language.implicitConversions
-
- /** Default NotStrict CompileOptions for compatibility code
- *
- * No longer implicit, materialization macro below provides a low-priority default
- */
- @deprecated("Use chisel3.ExplicitCompileOptions.NotStrict", "3.3")
- val defaultCompileOptions = chisel3.ExplicitCompileOptions.NotStrict
+ implicit val defaultCompileOptions = chisel3.ExplicitCompileOptions.NotStrict
abstract class Direction
case object INPUT extends Direction
@@ -590,16 +584,6 @@ package object Chisel { // scalastyle:ignore package.object.name number.of.t
val Pipe = chisel3.util.Pipe
type Pipe[T <: Data] = chisel3.util.Pipe[T]
- /** Provides a low priority NotStrict default. Can be overridden by providing a custom implicit
- * val in lexical scope (ie. imported)
- * Implemented as a macro to provide a low-priority default
- */
- implicit def materializeCompileOptions: CompileOptions = macro materializeCompileOptions_impl
-
- def materializeCompileOptions_impl(c: Context): c.Tree = {
- import c.universe._
- q"_root_.chisel3.ExplicitCompileOptions.NotStrict"
- }
/** Package for experimental features, which may have their API changed, be removed, etc.
*