We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7255970 commit 5479519Copy full SHA for 5479519
src/main/scala-2/chisel3/ltl/LTL.scala renamed to core/src/main/scala/chisel3/ltl/LTL.scala
@@ -6,7 +6,7 @@ import chisel3._
6
import chisel3.layer.{block, Layer}
7
import chisel3.util.circt._
8
import chisel3.experimental.hierarchy.Instance
9
-import chisel3.experimental.SourceInfo
+import chisel3.experimental.{SourceInfo, UnlocatableSourceInfo}
10
11
/** An opaque sequence returned by an intrinsic.
12
*
@@ -410,7 +410,7 @@ sealed abstract class AssertPropertyLike(defaultLayer: Layer) {
410
def apply(
411
prop: => Property,
412
clock: Option[Clock] = Module.clockOption,
413
- disable: Option[Disable] = Module.disableOption,
+ disable: Option[Disable] = Module.disableOption(UnlocatableSourceInfo),
414
label: Option[String] = None
415
)(
416
implicit sourceInfo: SourceInfo
src/main/scala-2/chisel3/util/circt/LTLIntrinsics.scala renamed to core/src/main/scala/chisel3/util/circt/LTLIntrinsics.scala
0 commit comments