diff options
| author | Jim Lawson | 2016-08-29 09:33:51 -0700 |
|---|---|---|
| committer | Jim Lawson | 2016-08-29 09:33:51 -0700 |
| commit | 5fcdd12fe92bd22f9cdfb8f5e39e510684b709bf (patch) | |
| tree | d7b7d7c80bd5ab82c1b1d72e3a5eb28797d82304 /chiselFrontend/src/main/scala/chisel3/core/Reg.scala | |
| parent | f84e6ef2d68404c741ea7e2aa2f3990ebb0984ee (diff) | |
Rename individual compile options.
Stricter values are "true". Current default (not strict) values are "false".
Diffstat (limited to 'chiselFrontend/src/main/scala/chisel3/core/Reg.scala')
| -rw-r--r-- | chiselFrontend/src/main/scala/chisel3/core/Reg.scala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chiselFrontend/src/main/scala/chisel3/core/Reg.scala b/chiselFrontend/src/main/scala/chisel3/core/Reg.scala index 6c357461..b77c9a31 100644 --- a/chiselFrontend/src/main/scala/chisel3/core/Reg.scala +++ b/chiselFrontend/src/main/scala/chisel3/core/Reg.scala @@ -10,7 +10,7 @@ import chisel3.internal.sourceinfo.{SourceInfo, UnlocatableSourceInfo} object Reg { private[core] def makeType[T <: Data](t: T = null, next: T = null, init: T = null): T = { if (t ne null) { - if (Builder.compileOptions.regTypeMustBeUnbound) { + if (Builder.compileOptions.declaredTypeMustBeUnbound) { Binding.checkUnbound(t, s"t ($t) must be unbound Type. Try using cloneType?") } t.chiselCloneType |
