summaryrefslogtreecommitdiff
path: root/core/src/main/scala/chisel3/Data.scala
diff options
context:
space:
mode:
authorJustin Deters2020-08-11 18:28:12 -0500
committerGitHub2020-08-11 23:28:12 +0000
commite0c805171ddb9707b0f9fe93e5d85ef9cdcab044 (patch)
tree8b331390b99204b72c7abfab67351845b685f06c /core/src/main/scala/chisel3/Data.scala
parent3668532fabc4ba4eaf70cf0ad1a55522aa33cdb3 (diff)
Bug fix for manipulating submodules in aspects (#1538)
* Fixed the aspect as parent bug in Data and MonoConnect * refactored and cleaned up finding an aspect parent * Added aspect fix to the BiConnect class * added unit test for manipulating submodules via aspects * Refactored to move determination of proper parent to Builder and made logic simpler in MonoConnect, Data, and BiConnect * Removed unused function and provided Scaladoc for retrieveParent
Diffstat (limited to 'core/src/main/scala/chisel3/Data.scala')
-rw-r--r--core/src/main/scala/chisel3/Data.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/main/scala/chisel3/Data.scala b/core/src/main/scala/chisel3/Data.scala
index b7859e91..bb7efedf 100644
--- a/core/src/main/scala/chisel3/Data.scala
+++ b/core/src/main/scala/chisel3/Data.scala
@@ -450,7 +450,7 @@ abstract class Data extends HasId with NamedComponent with SourceInfoDoc {
val mod = topBindingOpt.flatMap(_.location)
topBindingOpt match {
case Some(tb: TopBinding) if (mod == Builder.currentModule) =>
- case Some(pb: PortBinding) if (mod.flatMap(_._parent) == Builder.currentModule) =>
+ case Some(pb: PortBinding) if (mod.flatMap(Builder.retrieveParent(_,Builder.currentModule.get)) == Builder.currentModule) =>
case _ =>
throwException(s"operand is not visible from the current module")
}